• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

githubのコードからのfolk


Commit MetaInfo

Revisión2b4b2e7df1b7b7dc027b65cda7b238cfdec6a0a6 (tree)
Tiempo2010-12-22 08:52:06
Autorjstebbins <jstebbins@b64f...>
Commiterjstebbins

Log Message

LinGui: disable the 'Add to Queue' button while scanning.
It's not a good idea try to access title info while the scan is in progress.

git-svn-id: svn://localhost/HandBrake/trunk@3713 b64f7644-9d1e-0410-96f1-a4d463321fa5

Cambiar Resumen

Diferencia incremental

--- a/gtk/src/queuehandler.c
+++ b/gtk/src/queuehandler.c
@@ -1045,6 +1045,11 @@ ghb_queue_buttons_grey(signal_user_data_t *ud)
10451045
10461046 paused = queue_state & GHB_STATE_PAUSED;
10471047
1048+ widget = GHB_WIDGET(ud->builder, "queue_add");
1049+ gtk_widget_set_sensitive(widget, show_start);
1050+ action = GHB_ACTION(ud->builder, "queue_add_menu");
1051+ gtk_action_set_sensitive(action, show_start);
1052+
10481053 widget = GHB_WIDGET (ud->builder, "queue_start1");
10491054 if (show_stop)
10501055 {