aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorThunderblade73 <85900443+Thunderblade73@users.noreply.github.com>2023-09-29 21:16:26 +0200
committerGitHub <noreply@github.com>2023-09-29 21:16:26 +0200
commitb66076544f322159308570ae8c238d9f49a8b5d2 (patch)
tree2cb382378932eaa70cfdda78a3052082436edf40 /src/main/java/at/hannibal2/skyhanni/config
parent80cca037bbdf961ae92365c538a38b419412e7b8 (diff)
downloadskyhanni-b66076544f322159308570ae8c238d9f49a8b5d2.tar.gz
skyhanni-b66076544f322159308570ae8c238d9f49a8b5d2.tar.bz2
skyhanni-b66076544f322159308570ae8c238d9f49a8b5d2.zip
Added toggle for 12hr/24hr in real time hud (#511)
Added toggle for 12hr/24hr in real time hud #511
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java
index 2015415b0..370254665 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java
@@ -60,6 +60,11 @@ public class GUIConfig {
public boolean realTime = false;
@Expose
+ @ConfigOption(name = "Real Time 12h Format", desc = "Display the current computer time in 12hr Format rather than 24h Format.")
+ @ConfigEditorBoolean
+ public boolean realTimeFormatToggle = false;
+
+ @Expose
public Position realTimePosition = new Position(10, 10, false, true);
@Expose