Skip to content

Commit

Permalink
Merge pull request #1794 from andreituicu/fix_statusbar
Browse files Browse the repository at this point in the history
Fix status bar
  • Loading branch information
lasconic committed Feb 20, 2015
2 parents 7c52a20 + a2bc5b8 commit d9e3e93
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mscore/musescore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2291,6 +2291,8 @@ bool MuseScore::eventFilter(QObject *obj, QEvent *event)
globalY = me->globalY();
return QMainWindow::eventFilter(obj, event);
}
case QEvent::StatusTip:
return true; // prevent updates to the status bar
case QEvent::KeyPress:
{
QKeyEvent* e = static_cast<QKeyEvent*>(event);
Expand All @@ -2316,10 +2318,12 @@ bool MuseScore::eventFilter(QObject *obj, QEvent *event)
return true;
}
}
break;
}
default:
return QMainWindow::eventFilter(obj, event);
}
return QMainWindow::eventFilter(obj, event);
}

//---------------------------------------------------------
Expand Down

0 comments on commit d9e3e93

Please sign in to comment.