You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AFAIK this plugin and all forks that I found about don't set the ImGuiBackendFlags_HasMouseCursors flag.
This currently makes dear imgui disable io.ConfigWindowsResizeFromEdges making it not possible to resize from lower-left corner and borders.
I will make a change to dear imgui today to stop disabling io.ConfigWindowsResizeFromEdges when his is not meant, in order to raise awareness that resizing from borders etc. is possible, and possibly raise awareness that backends needs to support changing mouse shape by reading ImGui::GetMouseCursor() and applying the cursor.
AFAIK this plugin and all forks that I found about don't set the
ImGuiBackendFlags_HasMouseCursors
flag.This currently makes dear imgui disable
io.ConfigWindowsResizeFromEdges
making it not possible to resize from lower-left corner and borders.I will make a change to dear imgui today to stop disabling
io.ConfigWindowsResizeFromEdges
when his is not meant, in order to raise awareness that resizing from borders etc. is possible, and possibly raise awareness that backends needs to support changing mouse shape by readingImGui::GetMouseCursor()
and applying the cursor.For reference, this (unrelated) plugin does it here:
https://github.com/Sharundaar/UnrealImGuiDocker/blob/8be9597c9a3d61aef9d65a7a2ac734e916b9be8b/Source/UnrealImGuiDocker/Private/ImGuiSubsystem.cpp#L756
vd->Canvas->SetDesiredCursor(ImGuiInterop::ImguiToSlateCursor(ImGui::GetMouseCursor()));
The text was updated successfully, but these errors were encountered: