From f5798946ef708e0f4b35cd8e09882da257e4f1ce Mon Sep 17 00:00:00 2001 From: Alberto Griggio Date: Thu, 16 Mar 2017 11:43:37 +0100 Subject: [PATCH] fixed bug in disabling the "bypass" checkboxes when fast export is selected --- rtgui/exportpanel.cc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/rtgui/exportpanel.cc b/rtgui/exportpanel.cc index 53d93f8ba..72cf30fdd 100644 --- a/rtgui/exportpanel.cc +++ b/rtgui/exportpanel.cc @@ -361,8 +361,12 @@ void ExportPanel::LoadDefaultSettings() MaxWidth->set_value(options.fastexport_resize_width); MaxHeight->set_value(options.fastexport_resize_height); - use_fast_pipeline->set_active(options.fastexport_use_fast_pipeline); - bypass_box->set_sensitive(!options.fastexport_use_fast_pipeline); + if (options.fastexport_use_fast_pipeline) { + use_fast_pipeline->set_active(true); + bypass_box->set_sensitive(false); + } else { + use_normal_pipeline->set_active(true); + } } void ExportPanel::LoadSettings()