diff options
author | jstebbins <[email protected]> | 2013-01-15 08:23:53 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2013-01-15 08:23:53 +0000 |
commit | 51c25da188b437d689860432f89ba3329eaf083e (patch) | |
tree | 22e8266fe79999200f515c45352af92fa73fef83 /gtk/src/main.c | |
parent | 3086efa56616c0e062eac6dfd4bc6b7c0031df14 (diff) |
LinGui: Fix compatibility with GTK versions < 2.32
Ubuntu 11.04 and 11.10 use this and I'm not quite ready to drop support
for these.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5172 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/main.c')
-rw-r--r-- | gtk/src/main.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/gtk/src/main.c b/gtk/src/main.c index 77cb439d6..891abd088 100644 --- a/gtk/src/main.c +++ b/gtk/src/main.c @@ -745,14 +745,12 @@ GtkEntry { \n\ \n\ #preview_event_box, \n\ #live_preview_play, \n\ -#live_encode_progress, \n\ #live_duration, \n\ #preview_fullscreen, \n\ #hide_settings \n\ { \n\ background: @black; \n\ background-color: @gray18; \n\ - border-color: @white; \n\ color: @white; \n\ } \n\ \n\ @@ -763,11 +761,12 @@ GtkEntry { \n\ color: @white; \n\ } \n\ \n\ +#live_encode_progress, \n\ #live_preview_progress, \n\ #preview_frame \n\ { \n\ background: @black; \n\ - background-color: @black; \n\ + background-color: @gray46; \n\ color: @white; \n\ } \n\ \n\ @@ -780,6 +779,14 @@ GtkEntry { \n\ } \n\ \n\ #preview_fullscreen:active, \n\ +#hide_settings:selected:focused \n\ +{ \n\ + background: @black; \n\ + background-color: @gray32; \n\ + color: @white; \n\ +} \n\ + \n\ +#preview_fullscreen:active, \n\ #hide_settings:active \n\ { \n\ background: @black; \n\ @@ -1069,7 +1076,7 @@ main(int argc, char *argv[]) // Add dvd devices to File menu ghb_volname_cache_init(); - g_thread_new("Cache Volume Names", (GThreadFunc)ghb_cache_volnames, ud); + GHB_THREAD_NEW("Cache Volume Names", (GThreadFunc)ghb_cache_volnames, ud); #if defined(_USE_APP_IND) GtkUIManager * uim = GTK_UI_MANAGER(GHB_OBJECT(ud->builder, "uimanager1")); |