From 9a89eb545494d6f83ffedf1fcabea3f43a792ff5 Mon Sep 17 00:00:00 2001 From: Lawrence Lee Date: Wed, 5 Aug 2020 12:05:58 -0700 Subject: [PATCH] Fix RGB bars not showing for waveform The bars were not showing if the raw histogram button was activated. --- rtgui/histogrampanel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/histogrampanel.cc b/rtgui/histogrampanel.cc index 3c5fd4719..d9f369509 100644 --- a/rtgui/histogrampanel.cc +++ b/rtgui/histogrampanel.cc @@ -617,7 +617,7 @@ void HistogramRGBArea::setShow(bool show) void HistogramRGBArea::updateBackBuffer (int r, int g, int b, const Glib::ustring &profile, const Glib::ustring &profileW) { - if (!get_realized () || !showMode || rawMode) { + if (!get_realized () || !showMode || (rawMode && options.histogramScopeType != 1)) { return; }