Minor tweaks to studio GUI style parameters.

PiperOrigin-RevId: 936508032
Change-Id: I93806ba3d0569b5ee01e95384f7f835a201b8253
This commit is contained in:
Yuval Tassa
2026-06-23 01:45:52 -07:00
committed by Copybara-Service
parent 0fd7bea973
commit 5d043d8f72
+3 -3
View File
@@ -312,10 +312,10 @@ void SetupTheme(GuiTheme theme) {
int hspacing = 3;
int vspacing = 2;
float rounding = 2.0f;
float rounding = 3.0f;
s.DisplaySafeAreaPadding = ImVec2(0, 0);
s.WindowPadding = ImTrunc(ImVec2(6.0f * scale, 6.0f * scale));
s.FramePadding = ImTrunc(ImVec2(hspacing * scale, 3.0f * scale));
s.FramePadding = ImTrunc(ImVec2(hspacing * scale, 4.0f * scale));
s.ItemSpacing = ImTrunc(ImVec2(hspacing * scale, vspacing * scale));
s.ItemInnerSpacing = ImTrunc(ImVec2(hspacing * scale, vspacing * scale));
s.WindowRounding = ImTrunc(rounding * scale);
@@ -326,7 +326,7 @@ void SetupTheme(GuiTheme theme) {
s.GrabRounding = ImTrunc(rounding * scale);
s.PopupRounding = ImTrunc(rounding * scale);
s.WindowBorderSize = 0.0f;
s.FrameBorderSize = 0.0f;
s.FrameBorderSize = 1.0f;
s.PopupBorderSize = 1.0f;
s.IndentSpacing = ImTrunc(10.0f * scale);
s.ScrollbarSize = ImTrunc(10.0f * scale);