Merge lp:~l-admin-3/eidete/dialog-margins into lp:eidete

Proposed by Marcus Wichelmann
Status: Merged
Approved by: Danielle Foré
Approved revision: 188
Merged at revision: 188
Proposed branch: lp:~l-admin-3/eidete/dialog-margins
Merge into: lp:eidete
Diff against target: 22 lines (+1/-4)
1 file modified
src/Widgets/end_dialog.vala (+1/-4)
To merge this branch: bzr merge lp:~l-admin-3/eidete/dialog-margins
Reviewer Review Type Date Requested Status
elementary Apps team Pending
Review via email: mp+246795@code.launchpad.net

Commit message

Fixes the margins of a Gtk.Dialog in Gtk+-3.14.

Description of the change

Fixes the margins of a Gtk.Dialog in Gtk+-3.14.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/Widgets/end_dialog.vala'
2--- src/Widgets/end_dialog.vala 2015-01-06 19:59:43 +0000
3+++ src/Widgets/end_dialog.vala 2015-01-16 23:52:55 +0000
4@@ -27,17 +27,14 @@
5 private File source;
6
7 public EndDialog (EideteApp app) {
8- Object (use_header_bar: 1);
9-
10 this.app = app;
11 this.window_position = Gtk.WindowPosition.CENTER_ON_PARENT;
12 }
13
14 private void build_ui () {
15- (this.get_header_bar () as Gtk.HeaderBar).show_close_button = false;
16- this.get_header_bar ().get_style_context ().remove_class ("header-bar");
17 this.set_default_size (600, 600);
18 this.set_application (app);
19+ this.set_deletable (false);
20
21 if (app.selectionarea != null)
22 app.selectionarea.destroy ();

Subscribers

People subscribed via source and target branches