diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-12-04 21:53:41 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-12-04 21:53:41 -0500 |
| commit | 317730054d3de1184f20d827eef49391e9b631d4 (patch) | |
| tree | 7100c2feb8cb5f33ae6bc306d2991f7f84a83e53 /src/mainwindow.cpp | |
| parent | d3be45e79efa0208a5b4d25cf011475e4e98f21a (diff) | |
moved logs back to the bottom of the list, they're not game related
Diffstat (limited to 'src/mainwindow.cpp')
| -rw-r--r-- | src/mainwindow.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 01f683a7..cb242b88 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -4591,23 +4591,27 @@ QMenu *MainWindow::openFolderMenu() { QMenu *FolderMenu = new QMenu(this); + // game folders that are not necessarily MO-specific FolderMenu->addAction(tr("Open Game folder"), this, SLOT(openGameFolder())); FolderMenu->addAction(tr("Open MyGames folder"), this, SLOT(openMyGamesFolder())); FolderMenu->addAction(tr("Open INIs folder"), this, SLOT(openIniFolder())); FolderMenu->addSeparator(); + // MO-specific folders that are related to modding the game FolderMenu->addAction(tr("Open Instance folder"), this, SLOT(openInstanceFolder())); FolderMenu->addAction(tr("Open Mods folder"), this, SLOT(openModsFolder())); FolderMenu->addAction(tr("Open Profile folder"), this, SLOT(openProfileFolder())); FolderMenu->addAction(tr("Open Downloads folder"), this, SLOT(openDownloadsFolder())); - FolderMenu->addAction(tr("Open Logs folder"), this, SLOT(openLogsFolder())); FolderMenu->addSeparator(); + // MO-specific folders that are not directly related to modding and are either + // in the installation folder or the instance FolderMenu->addAction(tr("Open MO2 Install folder"), this, SLOT(openInstallFolder())); FolderMenu->addAction(tr("Open MO2 Plugins folder"), this, SLOT(openPluginsFolder())); FolderMenu->addAction(tr("Open MO2 Stylesheets folder"), this, SLOT(openStylesheetsFolder())); + FolderMenu->addAction(tr("Open MO2 Logs folder"), this, SLOT(openLogsFolder())); return FolderMenu; } |
