]> granicus.if.org Git - handbrake/commitdiff
LinGui: fix width of min title length entry widget
authorJohn Stebbins <jstebbins.hb@gmail.com>
Fri, 16 Sep 2016 16:30:33 +0000 (09:30 -0700)
committerJohn Stebbins <jstebbins.hb@gmail.com>
Fri, 16 Sep 2016 16:31:56 +0000 (09:31 -0700)
It cut off digits when > 2 digits

gtk/src/ghb.m4

index 42efa912086be93ebd7ea889d43df214ca663800..38361e96ce231999a4c4897afeb1d1add9b0aeb3 100644 (file)
@@ -7375,6 +7375,7 @@ This file may be reloaded at a later time to edit your jobs and re-encode.</prop
                             <property name="visible">True</property>
                             <property name="can_focus">True</property>
                             <property name="max_length">2</property>
+                            <property name="width-chars">6</property>
                             <property name="invisible_char">●</property>
                             <property name="shadow_type">none</property>
                             <property name="primary_icon_activatable">False</property>
@@ -7422,7 +7423,8 @@ This file may be reloaded at a later time to edit your jobs and re-encode.</prop
                           <object class="GtkSpinButton" id="MinTitleDuration">
                             <property name="visible">True</property>
                             <property name="can_focus">True</property>
-                            <property name="max_length">4</property>
+                            <property name="max-length">4</property>
+                            <property name="width-chars">6</property>
                             <property name="invisible_char">●</property>
                             <property name="shadow_type">none</property>
                             <property name="primary_icon_activatable">False</property>