diff options
author | jstebbins <[email protected]> | 2008-06-23 15:48:13 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-06-23 15:48:13 +0000 |
commit | cb5e91e29a93ffee9083672a02a325d983da2d90 (patch) | |
tree | add43aabb74207179f99a3e4d6b4afe358de6689 /gtk/src/settings.h | |
parent | 09ab2003ec02331fdd7bb62560dbbff043e6c361 (diff) |
LinGui: Allow scanning new source when work is in progress
and allow stacking up jobs from multiple sources in the queue.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1534 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/settings.h')
-rw-r--r-- | gtk/src/settings.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/src/settings.h b/gtk/src/settings.h index af653dbf9..c831c0fa8 100644 --- a/gtk/src/settings.h +++ b/gtk/src/settings.h @@ -30,10 +30,10 @@ GObject* debug_get_object(GtkBuilder *b, const gchar *n); enum { - GHB_STATE_START, - GHB_STATE_SCANNING, - GHB_STATE_WORKING, - GHB_STATE_IDLE + GHB_STATE_IDLE = 0x00, + GHB_STATE_START = 0x01, + GHB_STATE_SCANNING = 0x02, + GHB_STATE_WORKING = 0x04 }; typedef struct |