Skip to content

Commit

Permalink
show inspector by default
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Dec 19, 2014
1 parent 241d114 commit 1f5915e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions mscore/inspector/inspector.h
Expand Up @@ -338,6 +338,7 @@ class InspectorEmpty : public InspectorBase {

public:
InspectorEmpty(QWidget* parent);
virtual QSize sizeHint() const {return QSize(255,170);}
};

} // namespace Ms
Expand Down
3 changes: 2 additions & 1 deletion mscore/musescore.cpp
Expand Up @@ -2666,6 +2666,7 @@ void MuseScore::readSettings()
sizes << 500 << 100;
mainWindow->setSizes(sizes);
mscore->showPalette(true);
mscore->showInspector(true);
return;
}

Expand All @@ -2680,7 +2681,7 @@ void MuseScore::readSettings()
if (settings.value("maximized", false).toBool() && !QAccessible::isActive())
showMaximized();
mscore->showPalette(settings.value("showPanel", "1").toBool());
mscore->showInspector(settings.value("showInspector", "0").toBool());
mscore->showInspector(settings.value("showInspector", "1").toBool());
mscore->showPianoKeyboard(settings.value("showPianoKeyboard", "0").toBool());
mscore->showSelectionWindow(settings.value("showSelectionWindow", "0").toBool());

Expand Down

0 comments on commit 1f5915e

Please sign in to comment.