mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-24 02:14:22 +00:00
Fixed clicking on a window's void while staying still overzealously marking .ini settings as dirty (#923)
This commit is contained in:
parent
9235e0da46
commit
0b6211f907
1 changed files with 1 additions and 1 deletions
|
|
@ -2220,7 +2220,7 @@ void ImGui::NewFrame()
|
|||
if (!(g.MovedWindow->Flags & ImGuiWindowFlags_NoMove))
|
||||
{
|
||||
g.MovedWindow->PosFloat += g.IO.MouseDelta;
|
||||
if (!(g.MovedWindow->Flags & ImGuiWindowFlags_NoSavedSettings))
|
||||
if (!(g.MovedWindow->Flags & ImGuiWindowFlags_NoSavedSettings) && (g.IO.MouseDelta.x != 0.0f || g.IO.MouseDelta.y != 0.0f))
|
||||
MarkSettingsDirty();
|
||||
}
|
||||
FocusWindow(g.MovedWindow);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue