summaryrefslogtreecommitdiffhomepage
path: root/editor
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-11-29 14:03:24 +0100
committerStanislaw Halik <sthalik@misaki.pl>2022-11-29 14:03:24 +0100
commit072a31ed18eda341b1ceadf2432233848a922512 (patch)
treeff51c8c7c6ecd611f8074653fc462204383a17c0 /editor
parent4e74f32274bcbfd8b9c351b51a3fa9694fe9d452 (diff)
imgui: less borders for scenery table
Diffstat (limited to 'editor')
-rw-r--r--editor/imgui-scenery.cpp2
1 files changed, 1 insertions, 1 deletions
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);