Revert small change in size of RGB bar. TooWaBoo's CSS works just fine!

This commit is contained in:
Thanatomanic
2018-06-20 06:32:01 +02:00
parent 9e735b2640
commit 19c38fd2cd

View File

@@ -464,10 +464,10 @@ void HistogramRGBArea::get_preferred_height_for_width_vfunc (int width, int &min
{ {
int bHeight = width / 30; int bHeight = width / 30;
if (bHeight > 15) { if (bHeight > 10) {
bHeight = 15;
} else if (bHeight < 10 ) {
bHeight = 10; bHeight = 10;
} else if (bHeight < 5) {
bHeight = 5;
} }
minimum_height = bHeight; minimum_height = bHeight;