Cosmetics. Fixed orientation of mouse cursor for resize

This commit is contained in:
brunoherbelin
2020-09-06 19:19:25 +02:00
parent 4e1611aa07
commit 90715173f7
3 changed files with 14 additions and 12 deletions

View File

@@ -222,7 +222,7 @@ void UserInterface::handleKeyboard()
ImGuiIO& io = ImGui::GetIO();
alt_modifier_active = io.KeyAlt;
shift_modifier_active = io.KeyShift;
auto ctrl = io.ConfigMacOSXBehaviors ? io.KeySuper : io.KeyCtrl;
bool ctrl = io.ConfigMacOSXBehaviors ? io.KeySuper : io.KeyCtrl;
// Application "CTRL +"" Shortcuts
if ( ctrl ) {