Merge branch '82-settings-window-should-toggle-on-button-press' into 'master'

clicking the settings icon now toggles the settings window closed as well as open

Closes #82

See merge request gridtracker.org/gridtracker!100
merge-requests/98/merge
Matthew Chambers 2021-05-17 01:47:46 +00:00
commit e25e388e5a
1 zmienionych plików z 12 dodań i 4 usunięć

Wyświetl plik

@ -9110,10 +9110,18 @@ function showRootInfoBox()
function showSettingsBox()
{
updateRunningProcesses();
helpDiv.style.display = "none";
g_helpShow = false;
rootSettingsDiv.style.display = "inline-block";
if (rootSettingsDiv.style.display == "inline-block")
{
updateRunningProcesses();
rootSettingsDiv.style.display = "none";
}
else
{
updateRunningProcesses();
helpDiv.style.display = "none";
g_helpShow = false;
rootSettingsDiv.style.display = "inline-block";
}
}
function toggleBaWindow(event)