From 6f2078ea1b437103fa513186b7fa88b15544579e Mon Sep 17 00:00:00 2001 From: DrSlony Date: Wed, 29 Jul 2015 18:37:51 +0200 Subject: [PATCH] Added tooltip to Save Reference Image for Profiling's Apply white balance checkbox, no issue. --- rtdata/languages/default | 1 + rtgui/icmpanel.cc | 1 + 2 files changed, 2 insertions(+) diff --git a/rtdata/languages/default b/rtdata/languages/default index 364675668..82328c3b5 100644 --- a/rtdata/languages/default +++ b/rtdata/languages/default @@ -1488,6 +1488,7 @@ TP_ICM_NOICM;No ICM: sRGB Output TP_ICM_OUTPUTPROFILE;Output Profile TP_ICM_SAVEREFERENCE;Save Reference Image for Profiling TP_ICM_SAVEREFERENCE_APPLYWB;Apply white balance +TP_ICM_SAVEREFERENCE_APPLYWB_TOOLTIP;Generally, apply the white balance when saving images to create ICC profiles, and do not apply the white balance to create DCP profiles. TP_ICM_SAVEREFERENCE_TOOLTIP;Save the linear TIFF image before the input profile is applied. The result can be used for calibration purposes and generation of a camera profile. TP_ICM_TONECURVE;Tone curve TP_ICM_TONECURVE_TOOLTIP;Employ the embedded DCP tone curve. The setting is only enabled if the selected DCP has a tone curve. diff --git a/rtgui/icmpanel.cc b/rtgui/icmpanel.cc index d83e3694c..abd044ca8 100644 --- a/rtgui/icmpanel.cc +++ b/rtgui/icmpanel.cc @@ -833,6 +833,7 @@ void ICMPanel::saveReferencePressed () { dialog.add_button(Gtk::StockID("gtk-save"), Gtk::RESPONSE_OK); Gtk::CheckButton applyWB(M("TP_ICM_SAVEREFERENCE_APPLYWB")); + applyWB.set_tooltip_text (M("TP_ICM_SAVEREFERENCE_APPLYWB_TOOLTIP")); applyWB.set_active(true); Gtk::HBox* hbox = Gtk::manage( new Gtk::HBox() ); hbox->pack_end(applyWB, Gtk::PACK_SHRINK, 2);