diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-07-25 16:26:54 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-07-25 16:26:54 +0100 |
commit | 767b02bd7614059dd80d0cd1be306d9b63291f31 (patch) | |
tree | f92881887b7cb1d416d1d67a9ac307b9dc4d22f0 | |
parent | c852f83bc4d91de51c61ad4be0edf1b848247eaa (diff) |
Related: fdo#61544 convert save opt page from box to grid
grids compress better than boxes if there isn't enough available space
Change-Id: I12ec10c556fbe80fc1b74b12df47d6fc4b626f6c
-rw-r--r-- | cui/uiconfig/ui/optsavepage.ui | 40 |
1 files changed, 21 insertions, 19 deletions
diff --git a/cui/uiconfig/ui/optsavepage.ui b/cui/uiconfig/ui/optsavepage.ui index 54320f8b5501..a3702fbc8fe3 100644 --- a/cui/uiconfig/ui/optsavepage.ui +++ b/cui/uiconfig/ui/optsavepage.ui @@ -1,19 +1,11 @@ <?xml version="1.0" encoding="UTF-8"?> <interface> <!-- interface-requires gtk+ 3.0 --> - <object class="GtkAdjustment" id="adjustment1"> - <property name="lower">1</property> - <property name="upper">60</property> - <property name="value">15</property> - <property name="step_increment">1</property> - <property name="page_increment">10</property> - </object> - <object class="GtkBox" id="OptSavePage"> + <object class="GtkGrid" id="OptSavePage"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="border_width">6</property> - <property name="orientation">vertical</property> - <property name="spacing">12</property> + <property name="row_spacing">12</property> <child> <object class="GtkFrame" id="frame1"> <property name="visible">True</property> @@ -84,9 +76,10 @@ </child> </object> <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">0</property> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">1</property> </packing> </child> <child> @@ -268,9 +261,10 @@ </child> </object> <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">1</property> + <property name="left_attach">0</property> + <property name="top_attach">1</property> + <property name="width">1</property> + <property name="height">1</property> </packing> </child> <child> @@ -487,10 +481,18 @@ </child> </object> <packing> - <property name="expand">False</property> - <property name="fill">True</property> - <property name="position">2</property> + <property name="left_attach">0</property> + <property name="top_attach">2</property> + <property name="width">1</property> + <property name="height">1</property> </packing> </child> </object> + <object class="GtkAdjustment" id="adjustment1"> + <property name="lower">1</property> + <property name="upper">60</property> + <property name="value">15</property> + <property name="step_increment">1</property> + <property name="page_increment">10</property> + </object> </interface> |