diff options
author | jstebbins <[email protected]> | 2009-07-29 15:48:26 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-07-29 15:48:26 +0000 |
commit | 5b3a5c11ce43920031574c5d993e2b31ce3d6423 (patch) | |
tree | 4ed44b82c12902c5dcb572e069e3ef781a8975ad /gtk/src/ghb.ui | |
parent | 2d41542b7c4f0e4132f4c55a991ec98aecb4f4f3 (diff) |
LinGui: prevent initiation of another scan while a scan is in progress
attempting to start a scan while already scanning usually resulted in a
crash, and shouldn't be allowed anyway.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2735 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/ghb.ui')
-rw-r--r-- | gtk/src/ghb.ui | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk/src/ghb.ui b/gtk/src/ghb.ui index c0967c66b..e7eed9cfd 100644 --- a/gtk/src/ghb.ui +++ b/gtk/src/ghb.ui @@ -284,17 +284,17 @@ </object> </child> <child> - <object class="GtkAction" id="source1"> + <object class="GtkAction" id="source_action"> <property name="stock_id">gtk-open</property> - <property name="name">source1</property> + <property name="name">source_action</property> <property name="label">_Source</property> <signal handler="source_button_clicked_cb" name="activate"/> </object> </child> <child> - <object class="GtkAction" id="source_single"> + <object class="GtkAction" id="source_single_action"> <property name="icon-name">gtk-open</property> - <property name="name">source_single</property> + <property name="name">source_single_action</property> <property name="label">Single _Title</property> <signal handler="single_title_source_cb" name="activate"/> </object> @@ -426,8 +426,8 @@ <ui> <menubar name="menubar1"> <menu action="menuitem1"> - <menuitem action="source1"/> - <menuitem action="source_single"/> + <menuitem action="source_action"/> + <menuitem action="source_single_action"/> <menuitem action="destination1"/> <separator/> <menuitem action="preferences"/> @@ -542,7 +542,7 @@ <property name="visible">True</property> <property name="icon_size">5</property> <child> - <object class="GtkToolButton" id="toolbutton1"> + <object class="GtkToolButton" id="sourcetoolbutton"> <property name="visible">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="tooltip-text" translatable="yes">Choose Video Source</property> |