mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-11 18:34:58 +01:00
Temporary fix for preventing horizontal scrolling in main pannel
This commit is contained in:
@@ -7124,6 +7124,9 @@ void Navigator::RenderMainPannel()
|
||||
ImGui::SetNextWindowBgAlpha(0.85f); // Transparent background
|
||||
if (ImGui::Begin("##navigatorMain", NULL, ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_NoFocusOnAppearing | ImGuiWindowFlags_NoNav))
|
||||
{
|
||||
// Temporary fix for preventing horizontal scrolling (https://github.com/ocornut/imgui/issues/2915)
|
||||
ImGui::SetScrollX(0);
|
||||
|
||||
//
|
||||
// Panel content depends on show_config_
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user