Skip to content

Commit 1f7a1f8

Browse files
committed
fix #278772: quick fix which prevents the crash
Didn't dive deeper yet. The real reason of the crash could lie deeper.
1 parent e96bb91 commit 1f7a1f8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mscore/musescore.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1777,7 +1777,8 @@ MuseScore::MuseScore()
17771777
Workspace::addActionAndString(aboutQtAction, "about-qt");
17781778

17791779
aboutMusicXMLAction = new QAction("", 0);
1780-
aboutMusicXMLAction->setMenuRole(QAction::ApplicationSpecificRole);
1780+
//aboutMusicXMLAction->setMenuRole(QAction::ApplicationSpecificRole);
1781+
aboutMusicXMLAction->setMenuRole(QAction::NoRole);
17811782
connect(aboutMusicXMLAction, SIGNAL(triggered()), this, SLOT(aboutMusicXML()));
17821783
menuHelp->addAction(aboutMusicXMLAction);
17831784
Workspace::addActionAndString(aboutMusicXMLAction, "about-musicxml");

0 commit comments

Comments
 (0)