Skip to content

Commit

Permalink
fix #31601
Browse files Browse the repository at this point in the history
	modified:   mscore/scoreaccessibility.cpp
  • Loading branch information
andreituicu committed Sep 2, 2014
1 parent 244f40d commit 8350da9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mscore/scoreaccessibility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ void ScoreAccessibility::updateAccessibilityInfo()
//when this method is called
if ( (qApp->focusWidget() != w) &&
!mscore->inspector()->isAncestorOf(qApp->focusWidget()) &&
(mscore->searchDialog() && !mscore->searchDialog()->isAncestorOf(qApp->focusWidget()))) {
!(mscore->searchDialog() && mscore->searchDialog()->isAncestorOf(qApp->focusWidget())) ) {
w->setFocus();
}
QObject* obj = static_cast<QObject*>(w);
Expand Down

0 comments on commit 8350da9

Please sign in to comment.