From: John Stebbins Date: Fri, 16 Jun 2017 21:39:18 +0000 (-0700) Subject: LinGui: fix exclusive burn behavior when FAS burn enabled X-Git-Tag: 1.1.0~512 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d472d637f9987f8296e3b6b030c326199b932c8;p=handbrake LinGui: fix exclusive burn behavior when FAS burn enabled It was disabling burn for other non-FAS tracks. Not the behavior I wanted. --- diff --git a/gtk/src/subtitlehandler.c b/gtk/src/subtitlehandler.c index ca614b7d1..f833f86e3 100644 --- a/gtk/src/subtitlehandler.c +++ b/gtk/src/subtitlehandler.c @@ -758,7 +758,8 @@ subtitle_burned_toggled_cb(GtkWidget *widget, signal_user_data_t *ud) subsettings = subtitle_get_selected_settings(ud, &index); if (subsettings != NULL) { - if (ghb_dict_get_bool(subsettings, "Burn")) + if (ghb_dict_get_bool(subsettings, "Burn") && + ghb_dict_get(subsettings, "Track") != NULL) { ghb_ui_update(ud, "SubtitleDefaultTrack", ghb_boolean_value(FALSE)); subtitle_exclusive_burn(ud, index);