Skip to content

Commit

Permalink
fix #100101: pre-populate Album Manager with default "Untitled" album…
Browse files Browse the repository at this point in the history
… on first use
  • Loading branch information
vinayakvivek committed Feb 14, 2017
1 parent 1b49b4c commit 9fe632f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mscore/albummanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ AlbumManager::AlbumManager(QWidget* parent)
createScore->setEnabled(false);

MuseScore::restoreGeometry(this);
createNewClicked();
}

//---------------------------------------------------------
Expand Down Expand Up @@ -337,6 +338,9 @@ void MuseScore::showAlbumManager()
if (albumManager == 0)
albumManager = new AlbumManager(this);
albumManager->show();

// focus on album name on opening the Album Manager
albumManager->albumName->setFocus();
}

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

0 comments on commit 9fe632f

Please sign in to comment.