diff options
author | David Robillard <d@drobilla.net> | 2009-03-21 18:27:40 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-03-21 18:27:40 +0000 |
commit | b37bf5878d042be31b196829992c46cc16ca24bd (patch) | |
tree | 1a8acce270c7610622c21f5fefc2bd5ced36bb61 | |
parent | b0a2ef7d89c4a5eacdc98082d7242a87bf65e19b (diff) | |
download | ingen-b37bf5878d042be31b196829992c46cc16ca24bd.tar.gz ingen-b37bf5878d042be31b196829992c46cc16ca24bd.tar.bz2 ingen-b37bf5878d042be31b196829992c46cc16ca24bd.zip |
Fix Gtk warnings about non-zero adjustment page size.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1950 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | src/gui/ingen_gui.glade | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gui/ingen_gui.glade b/src/gui/ingen_gui.glade index 0cbc6292..c5f03375 100644 --- a/src/gui/ingen_gui.glade +++ b/src/gui/ingen_gui.glade @@ -741,7 +741,7 @@ <widget class="GtkSpinButton" id="new_subpatch_polyphony_spinbutton"> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="adjustment">1 0 100 1 10 10</property> + <property name="adjustment">1 0 100 1 10 0</property> <property name="climb_rate">1</property> </widget> <packing> @@ -955,7 +955,7 @@ <property name="sensitive">False</property> <property name="can_focus">True</property> <property name="tooltip" translatable="yes">Specify a custom polyphony value for new patch</property> - <property name="adjustment">1 0 1000 1 10 10</property> + <property name="adjustment">1 0 1000 1 10 0</property> <property name="climb_rate">1</property> </widget> <packing> @@ -1174,7 +1174,7 @@ <property name="sensitive">False</property> <property name="can_focus">True</property> <property name="tooltip" translatable="yes">Specify a custom polyphony value for new patch</property> - <property name="adjustment">1 0 100 1 10 10</property> + <property name="adjustment">1 0 100 1 10 0</property> <property name="climb_rate">1</property> </widget> <packing> @@ -1395,7 +1395,7 @@ <property name="sensitive">False</property> <property name="can_focus">True</property> <property name="tooltip" translatable="yes">Voice control changes are applied to</property> - <property name="adjustment">1 1 100 1 10 10</property> + <property name="adjustment">1 1 100 1 10 0</property> <property name="climb_rate">1</property> <property name="numeric">True</property> </widget> @@ -1485,7 +1485,7 @@ <property name="visible">True</property> <property name="can_focus">True</property> <property name="tooltip" translatable="yes">Patch polyphony</property> - <property name="adjustment">1 1 512 1 10 10</property> + <property name="adjustment">1 1 512 1 10 0</property> <property name="climb_rate">1</property> <property name="numeric">True</property> </widget> @@ -1685,7 +1685,7 @@ <property name="can_focus">True</property> <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> <property name="width_chars">12</property> - <property name="adjustment">0 -9.9999999999999999e+45 1.0000000000000001e+63 1 10 10</property> + <property name="adjustment">0 -9.9999999999999999e+45 1.0000000000000001e+63 1 10 0</property> <property name="digits">4</property> <property name="numeric">True</property> </widget> @@ -2482,7 +2482,7 @@ Contributors: <property name="visible">True</property> <property name="sensitive">False</property> <property name="can_focus">True</property> - <property name="adjustment">16180 1 65535 1 10 10</property> + <property name="adjustment">16180 1 65535 1 10 0</property> <property name="climb_rate">1</property> <property name="numeric">True</property> </widget> @@ -3104,7 +3104,7 @@ Thank you for contributing.</property> <widget class="GtkSpinButton" id="port_properties_min_spinner"> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="adjustment">0 -100000000 100000000 1 10 10</property> + <property name="adjustment">0 -100000000 100000000 1 10 0</property> <property name="climb_rate">1</property> <property name="digits">5</property> <property name="numeric">True</property> @@ -3119,7 +3119,7 @@ Thank you for contributing.</property> <widget class="GtkSpinButton" id="port_properties_max_spinner"> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="adjustment">1 -99999 99999 1 10 10</property> + <property name="adjustment">1 -99999 99999 1 10 0</property> <property name="climb_rate">1</property> <property name="digits">5</property> <property name="numeric">True</property> |