Info area hidden by detail window, fixes #4606

This commit is contained in:
heckflosse
2018-06-13 22:27:29 +02:00
parent 09b5dca08d
commit ebfc5dab9b

View File

@@ -241,13 +241,14 @@ bool ImageArea::on_draw(const ::Cairo::RefPtr< Cairo::Context> &cr)
mainCropWindow->expose (cr);
}
for (std::list<CropWindow*>::reverse_iterator i = cropWins.rbegin(); i != cropWins.rend(); ++i) {
(*i)->expose (cr);
}
if (options.showInfo && infotext != "") {
iBackBuffer.copySurface(cr);
}
for (std::list<CropWindow*>::reverse_iterator i = cropWins.rbegin(); i != cropWins.rend(); ++i) {
(*i)->expose (cr);
}
return true;
}