File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -4229,6 +4229,7 @@ static void StartLockWheelingWindow(ImGuiWindow* window)
4229
4229
ImGuiContext& g = *GImGui;
4230
4230
if (g.WheelingWindow == window)
4231
4231
return;
4232
+ IMGUI_DEBUG_LOG_IO("StartLockWheelingWindow() \"%s\"\n", window ? window->Name : "NULL");
4232
4233
g.WheelingWindow = window;
4233
4234
g.WheelingWindowRefMousePos = g.IO.MousePos;
4234
4235
g.WheelingWindowTimer = WINDOWS_MOUSE_WHEEL_SCROLL_LOCK_TIMER;
@@ -4246,6 +4247,7 @@ void ImGui::UpdateMouseWheel()
4246
4247
g.WheelingWindowTimer = 0.0f;
4247
4248
if (g.WheelingWindowTimer <= 0.0f)
4248
4249
{
4250
+ IMGUI_DEBUG_LOG_IO("UpdateMouseWheel() release WheelingWindow lock \"%s\"\n", g.WheelingWindow->Name);
4249
4251
g.WheelingWindow = NULL;
4250
4252
g.WheelingWindowTimer = 0.0f;
4251
4253
}
Original file line number Diff line number Diff line change @@ -947,6 +947,7 @@ namespace ImGui
947
947
// -----------------------------------------------------------------------------
948
948
949
949
// Flags for ImGui::Begin()
950
+ // (Those are per-window flags. There are shared flags in ImGuiIO: io.ConfigWindowsResizeFromEdges and io.ConfigWindowsMoveFromTitleBarOnly)
950
951
enum ImGuiWindowFlags_
951
952
{
952
953
ImGuiWindowFlags_None = 0 ,
@@ -984,6 +985,7 @@ enum ImGuiWindowFlags_
984
985
};
985
986
986
987
// Flags for ImGui::InputText()
988
+ // (Those are per-item flags. There are shared flags in ImGuiIO: io.ConfigInputTextCursorBlink and io.ConfigInputTextEnterKeepActive)
987
989
enum ImGuiInputTextFlags_
988
990
{
989
991
ImGuiInputTextFlags_None = 0 ,
@@ -1678,6 +1680,7 @@ enum ImGuiColorEditFlags_
1678
1680
1679
1681
// Flags for DragFloat(), DragInt(), SliderFloat(), SliderInt() etc.
1680
1682
// We use the same sets of flags for DragXXX() and SliderXXX() functions as the features are the same and it makes it easier to swap them.
1683
+ // (Those are per-item flags. There are shared flags in ImGuiIO: io.ConfigDragClickToInputText)
1681
1684
enum ImGuiSliderFlags_
1682
1685
{
1683
1686
ImGuiSliderFlags_None = 0 ,
You can’t perform that action at this time.
0 commit comments