fix playing folder modes in ui. read/write settings and cue list at
start/exit.shortcuts.
This commit is contained in:
parent
b4988a1307
commit
46b7624fb5
10 changed files with 252 additions and 90 deletions
|
|
@ -65,9 +65,13 @@ void CueTrackWidget::go()
|
|||
void CueTrackWidget::waitInSlot()
|
||||
{
|
||||
emit goAction(ui->audioLayer->intValue());
|
||||
tlFade.setDuration(ui->fade->value() * 1000);
|
||||
tlFade.start();
|
||||
ui->cueProgressBar->setStyleSheet("QProgressBar::chunk { background-color: #00FF00; }");
|
||||
if (ui->fade->value() > 0) {
|
||||
tlFade.setDuration(ui->fade->value() * 1000);
|
||||
tlFade.start();
|
||||
ui->cueProgressBar->setStyleSheet("QProgressBar::chunk { background-color: #00FF00; }");
|
||||
} else {
|
||||
fadeSlot();
|
||||
}
|
||||
}
|
||||
|
||||
void CueTrackWidget::fadeSlot()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue