فهرست منبع

Can't scroll with mouse wheel when window is collapsed.

ocornut 10 سال پیش
والد
کامیت
e7b43b014b
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      imgui.cpp

+ 1 - 1
imgui.cpp

@@ -2170,7 +2170,7 @@ void ImGui::NewFrame()
         g.HoveredWindow = g.HoveredRootWindow = NULL;
 
     // Scale & Scrolling
-    if (g.HoveredWindow && g.IO.MouseWheel != 0.0f)
+    if (g.HoveredWindow && g.IO.MouseWheel != 0.0f && !g.HoveredWindow->Collapsed)
     {
         ImGuiWindow* window = g.HoveredWindow;
         if (g.IO.KeyCtrl)