diff options
author | John Stebbins <[email protected]> | 2016-09-16 09:30:33 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-09-16 09:31:56 -0700 |
commit | 45745f92b095c8521c8ed79c9a8c84962f35bdf1 (patch) | |
tree | 1ee7a1a3c1d47b3e895f8ed4560b12e45c679d2f | |
parent | e5e1be31ffc55bc6e036fade5eb07f9b78b3a56e (diff) |
LinGui: fix width of min title length entry widget
It cut off digits when > 2 digits
-rw-r--r-- | gtk/src/ghb.m4 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk/src/ghb.m4 b/gtk/src/ghb.m4 index 42efa9120..38361e96c 100644 --- a/gtk/src/ghb.m4 +++ b/gtk/src/ghb.m4 @@ -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> |