From a40c768872b22ff497bf3728c7cb62218bed38f1 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sun, 3 Apr 2022 02:20:16 -0500 Subject: [PATCH] [nostalgia/core/studio] Fix subsheet editor height --- src/nostalgia/core/studio/tilesheeteditor-imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nostalgia/core/studio/tilesheeteditor-imgui.cpp b/src/nostalgia/core/studio/tilesheeteditor-imgui.cpp index db8a26be2..95d603bba 100644 --- a/src/nostalgia/core/studio/tilesheeteditor-imgui.cpp +++ b/src/nostalgia/core/studio/tilesheeteditor-imgui.cpp @@ -92,7 +92,7 @@ void TileSheetEditorImGui::draw(core::Context*) noexcept { drawPaletteSelector(); } ImGui::EndChild(); - ImGui::BeginChild("SubSheets", ImVec2(m_palViewWidth - 24, ySize / 2.07f), true); + ImGui::BeginChild("SubSheets", ImVec2(m_palViewWidth - 24, ySize / 2.03f), true); { static constexpr auto btnHeight = 18; const auto btnSize = ImVec2(18, btnHeight);