Skip to content

Commit

Permalink
fix #278772: quick fix which prevents the crash
Browse files Browse the repository at this point in the history
Didn't dive deeper yet. The real reason of the crash could lie deeper.
  • Loading branch information
anatoly-os committed Dec 11, 2018
1 parent e96bb91 commit 1f7a1f8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mscore/musescore.cpp
Expand Up @@ -1777,7 +1777,8 @@ MuseScore::MuseScore()
Workspace::addActionAndString(aboutQtAction, "about-qt");

aboutMusicXMLAction = new QAction("", 0);
aboutMusicXMLAction->setMenuRole(QAction::ApplicationSpecificRole);
//aboutMusicXMLAction->setMenuRole(QAction::ApplicationSpecificRole);
aboutMusicXMLAction->setMenuRole(QAction::NoRole);
connect(aboutMusicXMLAction, SIGNAL(triggered()), this, SLOT(aboutMusicXML()));
menuHelp->addAction(aboutMusicXMLAction);
Workspace::addActionAndString(aboutMusicXMLAction, "about-musicxml");
Expand Down

0 comments on commit 1f7a1f8

Please sign in to comment.