From ebfc5dab9bb731c05afd7a89999549463a4a8a5a Mon Sep 17 00:00:00 2001 From: heckflosse Date: Wed, 13 Jun 2018 22:27:29 +0200 Subject: [PATCH] Info area hidden by detail window, fixes #4606 --- rtgui/imagearea.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/rtgui/imagearea.cc b/rtgui/imagearea.cc index 038e04629..0818d7475 100644 --- a/rtgui/imagearea.cc +++ b/rtgui/imagearea.cc @@ -241,13 +241,14 @@ bool ImageArea::on_draw(const ::Cairo::RefPtr< Cairo::Context> &cr) mainCropWindow->expose (cr); } + for (std::list::reverse_iterator i = cropWins.rbegin(); i != cropWins.rend(); ++i) { + (*i)->expose (cr); + } + if (options.showInfo && infotext != "") { iBackBuffer.copySurface(cr); } - for (std::list::reverse_iterator i = cropWins.rbegin(); i != cropWins.rend(); ++i) { - (*i)->expose (cr); - } return true; }