diff options
author | John Stebbins <[email protected]> | 2015-10-15 08:47:44 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2015-10-15 08:48:42 -0700 |
commit | 69b61a09399822b51a525969e19f319aec206be1 (patch) | |
tree | 419e8baa5ae9537c35c8371b50f51f377599942b /gtk | |
parent | 3f9e10d5485eef47f0b20c929f7737046da0281c (diff) |
LinGui: Fix filter tab on gtk 3.10
Gtk versions prior to 3.12 do not support GtkFlowBox
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/src/ghb.ui | 33 |
1 files changed, 31 insertions, 2 deletions
diff --git a/gtk/src/ghb.ui b/gtk/src/ghb.ui index 37b4b2066..a0863ba09 100644 --- a/gtk/src/ghb.ui +++ b/gtk/src/ghb.ui @@ -2863,8 +2863,7 @@ Players will scale the image in order to achieve the specified aspect.</property </packing> </child> <child> - <object class="GtkFlowBox" id="filter_tab"> - <property name="orientation">horizontal</property> + <object class="GtkGrid" id="filter_tab"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="column-spacing">4</property> @@ -2932,6 +2931,12 @@ JunkLeft:JunkRight:JunkTop:JunkBottom:StrictBreaks:MetricPlane:Parity</property> </packing> </child> </object> + <packing> + <property name="top_attach">0</property> + <property name="left_attach">0</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> </child> <child> <object class="GtkGrid" id="table14"> @@ -3031,6 +3036,12 @@ SpatialLuma:SpatialChroma:TemporalLuma:TemporalChroma</property> </packing> </child> </object> + <packing> + <property name="top_attach">0</property> + <property name="left_attach">1</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> </child> <child> <object class="GtkGrid" id="table90"> @@ -3074,6 +3085,12 @@ If your source exhibits 'blockiness', this filter may help clean it up.</propert </packing> </child> </object> + <packing> + <property name="top_attach">0</property> + <property name="left_attach">2</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> </child> <child> <object class="GtkGrid" id="table1"> @@ -3200,6 +3217,12 @@ SpatialLuma:SpatialChroma:TemporalLuma:TemporalChroma</property> </packing> </child> </object> + <packing> + <property name="top_attach">1</property> + <property name="left_attach">1</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> </child> <child> <object class="GtkCheckButton" id="VideoGrayScale"> @@ -3214,6 +3237,12 @@ SpatialLuma:SpatialChroma:TemporalLuma:TemporalChroma</property> <property name="draw_indicator">True</property> <signal name="toggled" handler="setting_widget_changed_cb" swapped="no"/> </object> + <packing> + <property name="top_attach">1</property> + <property name="left_attach">2</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> </child> </object> <packing> |