From a12c48ed436e82e7d4d9a9c1ae736e001dba37c2 Mon Sep 17 00:00:00 2001 From: catloversg <152669316+catloversg@users.noreply.github.com> Date: Mon, 28 Oct 2024 12:39:01 +0700 Subject: [PATCH] UI: Disable font ligatures by default (#1729) --- src/GameOptions/ui/InterfacePage.tsx | 8 ++++---- src/Settings/Settings.ts | 2 +- src/ui/LoadingScreen.tsx | 2 ++ 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/GameOptions/ui/InterfacePage.tsx b/src/GameOptions/ui/InterfacePage.tsx index 71496bf4a..2af0363a3 100644 --- a/src/GameOptions/ui/InterfacePage.tsx +++ b/src/GameOptions/ui/InterfacePage.tsx @@ -18,7 +18,7 @@ export const InterfacePage = (): React.ReactElement => { checked={Settings.DisableASCIIArt} onChange={(newValue) => (Settings.DisableASCIIArt = newValue)} text="Disable ascii art" - tooltip={<>If this is set all ASCII art will be disabled.} + tooltip={<>If this is set, all ASCII arts will be disabled.} /> { checked={Settings.DisableOverviewProgressBars} onChange={(newValue) => (Settings.DisableOverviewProgressBars = newValue)} text="Disable Overview Progress Bars" - tooltip={<>If this is set, the progress bars in the character overview will be hidden.} + tooltip={<>If this is set, progress bars in the character overview will be hidden.} /> (Settings.ShowMiddleNullTimeUnit = newValue)} - text="Show all intermediary times unit, even when null." - tooltip={<>ex : 1 hours 13 seconds becomes 1 hours 0 minutes 13 seconds.} + text="Show all intermediary time units, even when null." + tooltip={<>Example: 1 hour 13 seconds becomes 1 hour 0 minutes 13 seconds.} /> { const id = setTimeout(() => { if (!loaded) setShow(true);