Skip to content
Snippets Groups Projects
Commit da75ebb0 authored by Tobias Ullerich's avatar Tobias Ullerich
Browse files

Fix pause fade in trigger

parent f78bcab1
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ public class PadStatusControlListener implements ChangeListener<PadStatus> {
}
if (pad.getContent() instanceof Fadeable) {
if (padSettings.getFade().isFadeInStart() || (oldValue == PadStatus.PAUSE && padSettings.getFade().isFadeInPause())) {
if ((oldValue != PadStatus.PAUSE && padSettings.getFade().isFadeInStart()) || (oldValue == PadStatus.PAUSE && padSettings.getFade().isFadeInPause())) {
((Fadeable) pad.getContent()).fadeIn();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment