From c56940b681ac630e4aea776b4fe68bf8e9d3cdcd Mon Sep 17 00:00:00 2001 From: Alberto Griggio Date: Thu, 26 Apr 2018 21:30:38 +0200 Subject: [PATCH] shadows/highlights: set lower bound for radius value in the gui to 1 --- rtgui/shadowshighlights.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/shadowshighlights.cc b/rtgui/shadowshighlights.cc index 60cd7a209..f1d8dbaf2 100644 --- a/rtgui/shadowshighlights.cc +++ b/rtgui/shadowshighlights.cc @@ -37,7 +37,7 @@ ShadowsHighlights::ShadowsHighlights () : FoldableToolPanel(this, "shadowshighli pack_start (*Gtk::manage (new Gtk::HSeparator())); - radius = Gtk::manage (new Adjuster (M("TP_SHADOWSHLIGHTS_RADIUS"), 5, 100, 1, 40)); + radius = Gtk::manage (new Adjuster (M("TP_SHADOWSHLIGHTS_RADIUS"), 1, 100, 1, 40)); pack_start (*radius); radius->setAdjusterListener (this);