Minor UI nits

This commit is contained in:
doop
2026-05-04 19:33:22 +00:00
parent 74f2c58b29
commit 5f2cf68e80
3 changed files with 5 additions and 7 deletions
+2 -2
View File
@@ -164,10 +164,10 @@ Rml::String format_graphics_setting_value(GraphicsOption option, int value) {
u32 width = 0;
u32 height = 0;
AuroraGetRenderSize(&width, &height);
return fmt::format("{}x ({}x{})", value, width, height);
return fmt::format("{}× ({}×{})", value, width, height);
}
case GraphicsOption::ShadowResolution:
return fmt::format("{}x", value);
return fmt::format("{}×", value);
case GraphicsOption::BloomMode:
switch (static_cast<BloomMode>(value)) {
case BloomMode::Off:
+1 -1
View File
@@ -510,7 +510,7 @@ SettingsWindow::SettingsWindow() {
},
.min = 1,
.max = 8,
.prefix = "x",
.suffix = "×",
})
.on_focus([&rightPane](Rml::Event&) {
rightPane.clear();