From de6175596062354ee7c02e9fb8fb6f823e5538ad Mon Sep 17 00:00:00 2001 From: Desmis Date: Sat, 23 May 2020 09:20:42 +0200 Subject: [PATCH] Add tooltip E Log --- rtdata/languages/default | 1 + rtgui/locallabtools2.cc | 1 + 2 files changed, 2 insertions(+) diff --git a/rtdata/languages/default b/rtdata/languages/default index 03aa96459..82adfc5e4 100644 --- a/rtdata/languages/default +++ b/rtdata/languages/default @@ -2513,6 +2513,7 @@ TP_LOCALLAB_LOGAUTO;Automatic TP_LOCALLAB_LOGFRA;Source Gray Point TP_LOCALLAB_LOGLIN;Logarithm mode TP_LOCALLAB_LOGPFRA;Relative Exposure Levels +TP_LOCALLAB_LOGFRAME_TOOLTIP;Allows Tone Mapping with Logarithm encoding (ACES).\nUsefull for underexposed pictures, or with high dynamic range. TP_LOCALLAB_LUM;Curves LL - CC TP_LOCALLAB_LUMADARKEST;Darkest TP_LOCALLAB_LUMASK;Luminance Background Mask diff --git a/rtgui/locallabtools2.cc b/rtgui/locallabtools2.cc index fc1b8b392..1c045d7ce 100644 --- a/rtgui/locallabtools2.cc +++ b/rtgui/locallabtools2.cc @@ -4318,6 +4318,7 @@ LocallabLog::LocallabLog(): // Add Log encoding specific widgets to GUI Gtk::Frame* const logPFrame = Gtk::manage(new Gtk::Frame(M("TP_LOCALLAB_LOGPFRA"))); logPFrame->set_label_align(0.025, 0.5); + logPFrame->set_tooltip_text(M("TP_LOCALLAB_LOGFRAME_TOOLTIP")); ToolParamBlock* const logPBox = Gtk::manage(new ToolParamBlock()); logPBox->pack_start(*autocompute); logPBox->pack_start(*blackEv);