diff options
author | jstebbins <[email protected]> | 2008-12-01 22:38:29 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-12-01 22:38:29 +0000 |
commit | 7ff50a3ab593821c96a60951ef8e2551ce6c288d (patch) | |
tree | 5d745224896dacaada5189b1f1976098b5c46fac /gtk/src/x264handler.c | |
parent | 999dac26c81096168b3900a9f7041edba96943d6 (diff) |
LinGui: fix cut/past capability in x264 options textview.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1985 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/x264handler.c')
-rw-r--r-- | gtk/src/x264handler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/src/x264handler.c b/gtk/src/x264handler.c index 154defbbb..3fbcf49c9 100644 --- a/gtk/src/x264handler.c +++ b/gtk/src/x264handler.c @@ -77,7 +77,7 @@ x264_focus_out_cb(GtkWidget *widget, GdkEventFocus *event, options = ghb_settings_get_string(ud->settings, "x264Option"); sopts = sanitize_x264opts(ud, options); ignore_options_update = TRUE; - if (sopts != NULL) + if (sopts != NULL && strcmp(sopts, options) != 0) { ghb_ui_update(ud, "x264Option", ghb_string_value(sopts)); ghb_x264_parse_options(ud, sopts); |