diff --git a/rtdata/images/crop_auto_22.png b/rtdata/images/crop_auto_22.png new file mode 100644 index 000000000..95ffc97e3 Binary files /dev/null and b/rtdata/images/crop_auto_22.png differ diff --git a/rtdata/images/distortion.png b/rtdata/images/distortion.png new file mode 100644 index 000000000..3b687133c Binary files /dev/null and b/rtdata/images/distortion.png differ diff --git a/rtdata/images/distortion_auto.png b/rtdata/images/distortion_auto.png new file mode 100644 index 000000000..45a49beca Binary files /dev/null and b/rtdata/images/distortion_auto.png differ diff --git a/rtdata/languages/default b/rtdata/languages/default index 8f708248f..a6c9acb1d 100644 --- a/rtdata/languages/default +++ b/rtdata/languages/default @@ -759,7 +759,7 @@ TP_DIRPYREQUALIZER_LUMAFINEST;Finest TP_DIRPYREQUALIZER_LUMANEUTRAL;Neutral TP_DIRPYREQUALIZER_THRESHOLD;Threshold TP_DISTORTION_AMOUNT;Amount -TP_DISTORTION_AUTO;Auto distortion correction +TP_DISTORTION_AUTO; Auto distortion correction TP_DISTORTION_AUTO_TIP;(Exprimental) Correct lens distortion automatically for some cameras (M4/3, some compact DC, etc.) TP_DISTORTION_LABEL;Distortion TP_EQUALIZER_CONTRAST_MINUS;Contrast- @@ -838,7 +838,7 @@ TP_LABCURVE_ENABLESATLIMITER;Enable saturation limiter TP_LABCURVE_LABEL;Lab Adjustments TP_LABCURVE_SATLIMIT;Saturation limit TP_LABCURVE_SATURATION;Saturation -TP_LENSGEOM_AUTOCROP;Auto Crop +TP_LENSGEOM_AUTOCROP; Auto Crop TP_LENSGEOM_FILL;Auto Fill TP_LENSGEOM_LABEL;Lens / Geometry TP_LUMADENOISE_EDGETOLERANCE;Edge Tolerance diff --git a/rtgui/crop.cc b/rtgui/crop.cc index 0a867351d..b3a2d0af3 100644 --- a/rtgui/crop.cc +++ b/rtgui/crop.cc @@ -76,7 +76,7 @@ Crop::Crop (): Gtk::VBox(), FoldableToolPanel(this) { pack_start (*hb2, Gtk::PACK_SHRINK, 4); selectCrop = Gtk::manage (new Gtk::Button (M("TP_CROP_SELECTCROP"))); - selectCrop->set_image (*Gtk::manage (new Gtk::Image (argv0+"/images/crop16.png"))); + selectCrop->set_image (*Gtk::manage (new Gtk::Image (argv0+"/images/crop22.png"))); pack_start (*selectCrop, Gtk::PACK_SHRINK, 2); diff --git a/rtgui/distortion.cc b/rtgui/distortion.cc index 3c32b8a59..f477c03be 100644 --- a/rtgui/distortion.cc +++ b/rtgui/distortion.cc @@ -19,6 +19,8 @@ #include #include +extern Glib::ustring argv0; + using namespace rtengine; using namespace rtengine::procparams; @@ -26,6 +28,7 @@ Distortion::Distortion (): Gtk::VBox(), FoldableToolPanel(this) { rlistener = NULL; autoDistor = Gtk::manage (new Gtk::Button (M("TP_DISTORTION_AUTO"))); + autoDistor->set_image (*Gtk::manage (new Gtk::Image (argv0+"/images/distortion_auto.png"))); autoDistor->set_tooltip_text (M("TP_DISTORTION_AUTO_TIP")); idConn = autoDistor->signal_pressed().connect( sigc::mem_fun(*this, &Distortion::idPressed) ); autoDistor->show(); diff --git a/rtgui/lensgeom.cc b/rtgui/lensgeom.cc index e7d3c0924..49e119e3c 100644 --- a/rtgui/lensgeom.cc +++ b/rtgui/lensgeom.cc @@ -30,6 +30,7 @@ LensGeometry::LensGeometry () : Gtk::VBox(), FoldableToolPanel(this), rlistener( pack_start (*fill); autoCrop = Gtk::manage (new Gtk::Button (M("TP_LENSGEOM_AUTOCROP"))); + autoCrop->set_image (*Gtk::manage (new Gtk::Image (argv0+"/images/crop_auto_22.png"))); pack_start (*autoCrop, Gtk::PACK_SHRINK, 2); packBox = Gtk::manage (new Gtk::VBox ());