mirror of
https://github.com/tildearrow/furnace.git
synced 2024-12-29 19:11:23 +00:00
GUI: typo fixing
This commit is contained in:
parent
56ba47408c
commit
21baf2e272
1 changed files with 2 additions and 2 deletions
|
@ -515,11 +515,11 @@ void FurnaceGUI::drawSettings() {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool saveWindowPosB=settings.saveWindowPos;
|
bool saveWindowPosB=settings.saveWindowPos;
|
||||||
if (ImGui::Checkbox("Remember window location",&saveWindowPosB)) {
|
if (ImGui::Checkbox("Remember window position",&saveWindowPosB)) {
|
||||||
settings.saveWindowPos=saveWindowPosB;
|
settings.saveWindowPos=saveWindowPosB;
|
||||||
}
|
}
|
||||||
if (ImGui::IsItemHovered()) {
|
if (ImGui::IsItemHovered()) {
|
||||||
ImGui::SetTooltip("remembers where window was last located on start-up. When disabled, window will start in a defaul location.");
|
ImGui::SetTooltip("remembers the window's last position on startup.");
|
||||||
}
|
}
|
||||||
|
|
||||||
bool blankInsB=settings.blankIns;
|
bool blankInsB=settings.blankIns;
|
||||||
|
|
Loading…
Reference in a new issue