From 19c38fd2cde6d828906e6d4bc72350a957ad62dd Mon Sep 17 00:00:00 2001 From: Thanatomanic Date: Wed, 20 Jun 2018 06:32:01 +0200 Subject: [PATCH] Revert small change in size of RGB bar. TooWaBoo's CSS works just fine! --- rtgui/histogrampanel.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rtgui/histogrampanel.cc b/rtgui/histogrampanel.cc index 65384d75a..599573e19 100644 --- a/rtgui/histogrampanel.cc +++ b/rtgui/histogrampanel.cc @@ -464,10 +464,10 @@ void HistogramRGBArea::get_preferred_height_for_width_vfunc (int width, int &min { int bHeight = width / 30; - if (bHeight > 15) { - bHeight = 15; - } else if (bHeight < 10 ) { + if (bHeight > 10) { bHeight = 10; + } else if (bHeight < 5) { + bHeight = 5; } minimum_height = bHeight;