summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2015-04-10 22:25:55 +0000
committerjstebbins <[email protected]>2015-04-10 22:25:55 +0000
commit9c78da39f3c6947c84c039e1f16497da6020b740 (patch)
treed30af45184d6d268e4e4bd5cb8c35d72567ca308
parentf02bf0d2bc5035f74488585c5909a65c875f671d (diff)
LinGui: fix pause button/resume
pressing pause put the resume button into an inactive state git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7083 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--gtk/src/queuehandler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/src/queuehandler.c b/gtk/src/queuehandler.c
index 2f48c8bf3..de3bf72d8 100644
--- a/gtk/src/queuehandler.c
+++ b/gtk/src/queuehandler.c
@@ -1912,7 +1912,7 @@ ghb_queue_buttons_grey(signal_user_data_t *ud)
show_stop = queue_state &
(GHB_STATE_WORKING | GHB_STATE_SEARCHING |
- GHB_STATE_SCANNING | GHB_STATE_MUXING);
+ GHB_STATE_SCANNING | GHB_STATE_MUXING | GHB_STATE_PAUSED);
show_start = !(scan_state & GHB_STATE_SCANNING) &&
(title !=NULL || queue_count > 0);