mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-03 00:03:50 +00:00
Fix action bar not clickable: remove NoInputs flag
The ImGuiWindowFlags_NoInputs flag was blocking all input including mouse clicks. Removed this flag to restore action bar clickability while keeping keyboard shortcuts functional.
This commit is contained in:
parent
becc94d4ba
commit
e1ecd13bcd
1 changed files with 1 additions and 1 deletions
|
|
@ -2324,7 +2324,7 @@ void GameScreen::renderActionBar(game::GameHandler& gameHandler) {
|
||||||
|
|
||||||
ImGuiWindowFlags flags = ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMove |
|
ImGuiWindowFlags flags = ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMove |
|
||||||
ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoTitleBar |
|
ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoTitleBar |
|
||||||
ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoInputs;
|
ImGuiWindowFlags_NoScrollbar;
|
||||||
|
|
||||||
ImGui::PushStyleVar(ImGuiStyleVar_WindowRounding, 4.0f);
|
ImGui::PushStyleVar(ImGuiStyleVar_WindowRounding, 4.0f);
|
||||||
ImGui::PushStyleColor(ImGuiCol_WindowBg, ImVec4(0.05f, 0.05f, 0.05f, 0.9f));
|
ImGui::PushStyleColor(ImGuiCol_WindowBg, ImVec4(0.05f, 0.05f, 0.05f, 0.9f));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue