mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-11 07:05:48 +01:00
2019-10-09 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdairplay(1) that caused space bar presses to start the next event in the Main Log even when 'Space Bar Action' was set to 'None'.
This commit is contained in:
@@ -1811,11 +1811,6 @@ void MainWidget::refreshStatusChangedData(bool active)
|
||||
else {
|
||||
air_refresh_label->setText("");
|
||||
}
|
||||
//
|
||||
// FIXME: Disabled in 2.10.3caefix05 due to segfault problems.
|
||||
// Do we really need this?
|
||||
//
|
||||
// qApp->processEvents();
|
||||
}
|
||||
|
||||
|
||||
@@ -1831,6 +1826,9 @@ void MainWidget::keyPressEvent(QKeyEvent *e)
|
||||
{
|
||||
switch(e->key()) {
|
||||
case Qt::Key_Space:
|
||||
if(rda->airplayConf()->barAction()&&(air_log[0]->nextLine()>=0)) {
|
||||
air_log[0]->play(air_log[0]->nextLine(),RDLogLine::StartManual);
|
||||
}
|
||||
break;
|
||||
|
||||
case Qt::Key_X:
|
||||
|
||||
Reference in New Issue
Block a user