@@ -1815,7 +1815,7 @@ static GtkWidget* _create_basic_curve_controls_box(dt_iop_module_t *self,
18151815 dt_iop_basic_curve_controls_t * controls = & g -> basic_curve_controls ;
18161816
18171817 // curve_pivot_x_relative_ev with picker
1818- slider = dt_color_picker_new (self , DT_COLOR_PICKER_AREA | DT_COLOR_PICKER_DENOISE | DT_COLOR_PICKER_NO_AUTO , dt_bauhaus_slider_from_params (section , "curve_pivot_x" ));
1818+ slider = dt_color_picker_new (self , DT_COLOR_PICKER_AREA | DT_COLOR_PICKER_DENOISE | DT_COLOR_PICKER_NO_AUTO | DT_COLOR_PICKER_CALLBACK_ONLY_WHEN_DONE , dt_bauhaus_slider_from_params (section , "curve_pivot_x" ));
18191819 controls -> curve_pivot_x = slider ;
18201820 dt_bauhaus_slider_set_format (slider , _ (" EV" ));
18211821 dt_bauhaus_slider_set_digits (slider , 2 );
@@ -1824,7 +1824,7 @@ static GtkWidget* _create_basic_curve_controls_box(dt_iop_module_t *self,
18241824 "used to set the pivot relative to mid-gray" ));
18251825
18261826 // curve_pivot_y_linear
1827- slider = dt_color_picker_new (self , DT_COLOR_PICKER_AREA | DT_COLOR_PICKER_DENOISE | DT_COLOR_PICKER_NO_AUTO , dt_bauhaus_slider_from_params (section , "curve_pivot_y_linear_output" ));
1827+ slider = dt_color_picker_new (self , DT_COLOR_PICKER_AREA | DT_COLOR_PICKER_DENOISE | DT_COLOR_PICKER_NO_AUTO | DT_COLOR_PICKER_CALLBACK_ONLY_WHEN_DONE , dt_bauhaus_slider_from_params (section , "curve_pivot_y_linear_output" ));
18281828 controls -> curve_pivot_y_linear = slider ;
18291829 dt_bauhaus_slider_set_format (slider , "%" );
18301830 dt_bauhaus_slider_set_digits (slider , 2 );
0 commit comments