Compare commits
2 commits
9999a7dcb0
...
fa78ca2a8a
Author | SHA1 | Date | |
---|---|---|---|
fa78ca2a8a | |||
3f3166691d |
2 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ class MassManager {
|
||||||
std::string _steamId;
|
std::string _steamId;
|
||||||
bool _demo;
|
bool _demo;
|
||||||
|
|
||||||
std::string _lastError = "";
|
std::string _lastError;
|
||||||
|
|
||||||
Containers::Array<Mass> _hangars;
|
Containers::Array<Mass> _hangars;
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
void SaveTool::drawMainMenu() {
|
void SaveTool::drawMainMenu() {
|
||||||
if(ImGui::BeginMainMenuBar()) {
|
if(ImGui::BeginMainMenuBar()) {
|
||||||
if(ImGui::BeginMenu("Save Tool##SaveToolMenu")) {
|
if(ImGui::BeginMenu("Save Tool##SaveToolMenu")) {
|
||||||
if(ImGui::BeginMenu(ICON_FA_FOLDER_OPEN " Open data directory", _mbManager != nullptr)) {
|
if(ImGui::BeginMenu(ICON_FA_FOLDER_OPEN " Open game data directory", _mbManager != nullptr)) {
|
||||||
if(ImGui::MenuItem(ICON_FA_COG " Configuration", nullptr, false, _mbManager != nullptr)) {
|
if(ImGui::MenuItem(ICON_FA_COG " Configuration", nullptr, false, _mbManager != nullptr)) {
|
||||||
openUri(Utility::Directory::toNativeSeparators(_mbManager->saveDirectory() + "/Saved/Config/WindowsNoEditor"));
|
openUri(Utility::Directory::toNativeSeparators(_mbManager->saveDirectory() + "/Saved/Config/WindowsNoEditor"));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue