} else { //Otherwise, the delay is custom
customDelayButton.doClick();
delayField.setText(config.getProperty(DELAY));
}
}
if (config.containsKey(SCRUB_MODE)) { //Load current playbackSlider mode from properties
if (Boolean.parseBoolean(config.getProperty(SCRUB_MODE))) { //If the mode is set to scrub
scrubButton.doClick();
} else { //Othwerise, it must be set to drag & drop
dragDropButton.doClick();
}