From: phantomjinx <pha...@us...> - 2011-12-17 22:39:31
|
commit 308d340a8dbfd5a898ab0da3ed50f00399a5e592 Author: phantomjinx <p.g...@ph...> Date: Sat Dec 17 22:00:28 2011 +0000 Track volume control broken * Missing a scale adjustment for the scale to slide correctly. plugins/details_editor/details_editor.xml | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) --- diff --git a/plugins/details_editor/details_editor.xml b/plugins/details_editor/details_editor.xml index d33f13c..9f9badd 100644 --- a/plugins/details_editor/details_editor.xml +++ b/plugins/details_editor/details_editor.xml @@ -1,6 +1,12 @@ <?xml version="1.0"?> <interface> <!-- interface-requires gtk+ 2.6 --> + <object class="GtkAdjustment" id="details_scale_23_adjustment"> + <property name="lower">-255</property> + <property name="upper">255</property> + <property name="step_increment">1</property> + <property name="page_increment">16</property> + </object> <!-- interface-naming-policy toplevel-contextual --> <object class="GtkWindow" id="details_window"> <property name="title" translatable="yes">Details</property> @@ -2494,6 +2500,7 @@ simultaneously</property> <object class="GtkHScale" id="details_scale_23"> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="adjustment">details_scale_23_adjustment</property> <property name="digits">0</property> <property name="value_pos">right</property> </object> |