Merge lp:~embik/pantheon-calculator/gtk314-fix into lp:~elementary-apps/pantheon-calculator/trunk

Proposed by Marvin Beckers
Status: Merged
Approved by: Cody Garver
Approved revision: 82
Merged at revision: 82
Proposed branch: lp:~embik/pantheon-calculator/gtk314-fix
Merge into: lp:~elementary-apps/pantheon-calculator/trunk
Diff against target: 25 lines (+3/-1)
1 file modified
src/HistoryDialog.vala (+3/-1)
To merge this branch: bzr merge lp:~embik/pantheon-calculator/gtk314-fix
Reviewer Review Type Date Requested Status
elementary Pantheon team Pending
Review via email: mp+246746@code.launchpad.net

Commit message

fixed HistoryDialog after GTK+ 3.14 update

Description of the change

fixed HistoryDialog after GTK+ 3.14 update

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/HistoryDialog.vala'
2--- src/HistoryDialog.vala 2015-01-14 19:50:02 +0000
3+++ src/HistoryDialog.vala 2015-01-16 17:12:34 +0000
4@@ -52,9 +52,9 @@
5 main_grid = new Gtk.Grid ();
6 main_grid.expand = true;
7 main_grid.margin = 12;
8+ main_grid.margin_top = 0;
9 main_grid.row_spacing = 10;
10 main_grid.column_spacing = 20;
11- main_grid.halign = Gtk.Align.END;
12 content.add (main_grid);
13
14 if (history.length () > 0) {
15@@ -90,9 +90,11 @@
16 main_grid.attach (add_label, 0, 1, 1, 1);
17
18 result_radio = new Gtk.RadioButton.with_label (null, _("Result"));
19+ result_radio.halign = Gtk.Align.END;
20 main_grid.attach (result_radio, 2, 1, 1, 1);
21
22 expression_radio = new Gtk.RadioButton.with_label_from_widget (result_radio, _("Expression"));
23+ expression_radio.halign = Gtk.Align.END;
24 main_grid.attach (expression_radio, 1, 1, 1, 1);
25 }
26

Subscribers

People subscribed via source and target branches

to all changes: