Prevent flashing background color of the preview when adding nodes to a curve using on-canvas picker, fixes #4743

This commit is contained in:
heckflosse
2018-08-20 21:32:16 +02:00
parent 6f29915045
commit bd568ab957

View File

@@ -1379,7 +1379,7 @@ void CropWindow::expose (Cairo::RefPtr<Cairo::Context> cr)
break;
}
}
bool useBgColor = (state == SNormal);
bool useBgColor = (state == SNormal || state == SDragPicker || state == SDeletePicker);
if (cropHandler.cropPixbuf) {
imgW = cropHandler.cropPixbuf->get_width ();