Adding RGBLF preview modes support for Before/After views (issue 1234)

This commit is contained in:
Michael Ezra
2012-02-03 21:25:13 -05:00
parent 80bae30d5b
commit e53e4a132a
5 changed files with 19 additions and 0 deletions

View File

@@ -61,4 +61,9 @@ void IndicateClippedPanel::toggleClipped (bool highlights) {
void IndicateClippedPanel::buttonToggled () {
imageArea->queue_draw ();
// this will redraw the linked Before image area
// which is set when before/after view is enabled
if (imageArea->iLinkedImageArea!=NULL)
imageArea->iLinkedImageArea->queue_draw ();
}