From 072a31ed18eda341b1ceadf2432233848a922512 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Tue, 29 Nov 2022 14:03:24 +0100 Subject: imgui: less borders for scenery table --- editor/imgui-scenery.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editor') diff --git a/editor/imgui-scenery.cpp b/editor/imgui-scenery.cpp index 41dc8a6e..c8ae426b 100644 --- a/editor/imgui-scenery.cpp +++ b/editor/imgui-scenery.cpp @@ -14,7 +14,7 @@ void app::draw_editor_scenery_pane(scenery_editor& ed) { const auto& style = ImGui::GetStyle(); const auto dpi = M->dpi_scale(); - constexpr ImGuiTableFlags flags = ImGuiTableFlags_BordersV | ImGuiTableFlags_ScrollY; + constexpr ImGuiTableFlags flags = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_ScrollY; constexpr int ncolumns = 4; const auto size = ImGui::GetWindowSize(); auto b = imgui::begin_table("scenery-table", ncolumns, flags, size); -- cgit v1.2.3