From ce220287813b9511de2128e93d840568ad354d5c Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sun, 21 Mar 2021 14:51:21 +0100 Subject: [PATCH] imgui: Fix floating windows creating their own task bar items --- source/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/window.cpp b/source/window.cpp index ceb79a4fb..7689dbdf2 100644 --- a/source/window.cpp +++ b/source/window.cpp @@ -662,7 +662,7 @@ namespace hex { #endif - io.ConfigViewportsNoTaskBarIcon = false; + io.ConfigViewportsNoTaskBarIcon = true; io.KeyMap[ImGuiKey_Tab] = GLFW_KEY_TAB; io.KeyMap[ImGuiKey_LeftArrow] = GLFW_KEY_LEFT; io.KeyMap[ImGuiKey_RightArrow] = GLFW_KEY_RIGHT;