diff options
author | jstebbins <[email protected]> | 2014-05-16 09:52:04 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-05-16 09:52:04 +0000 |
commit | 921c659de321eedb3784105652bccce511867e1a (patch) | |
tree | 4b2b3de54e74259ab492f39febc562bfb135ceaf /gtk/src/main.c | |
parent | 4274a3ea62219e35eeafc525bbb84e25bfb63615 (diff) |
LinGui: fix some glib warning messages in log
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6196 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/main.c')
-rw-r--r-- | gtk/src/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/src/main.c b/gtk/src/main.c index e7eaf8f6a..de9218e60 100644 --- a/gtk/src/main.c +++ b/gtk/src/main.c @@ -977,6 +977,9 @@ main(int argc, char *argv[]) ghb_init_audio_defaults_ui(ud); ghb_init_subtitle_defaults_ui(ud); + // Parsing x264 options "" initializes x264 widgets to proper defaults + ghb_x264_init(ud); + // Load prefs before presets. Some preset defaults may depend // on preference settings. // First load default values @@ -1012,9 +1015,6 @@ main(int argc, char *argv[]) ghb_dvd_set_current(source, ud); g_free(source); - // Parsing x264 options "" initializes x264 widgets to proper defaults - ghb_x264_init(ud); - // Populate the presets tree view ghb_presets_list_init(ud, NULL, 0); // Get the first preset name |