summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-20 00:11:21 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-20 00:11:21 +0100
commit990d54fb54adbf66affcbaa4c90667ecc834f386 (patch)
tree6beea17a6bafb21a202dbd0030ebf6956d63dc88 /src/main/java/at/hannibal2/skyhanni/config
parent5274873601f23daf743e215616405f04839a8474 (diff)
downloadskyhanni-990d54fb54adbf66affcbaa4c90667ecc834f386.tar.gz
skyhanni-990d54fb54adbf66affcbaa4c90667ecc834f386.tar.bz2
skyhanni-990d54fb54adbf66affcbaa4c90667ecc834f386.zip
Remind every 30 minutes to set a hotkey for /sh gui.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/gui/GUIConfig.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
index 096078cf5..641dc912d 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -67,7 +67,7 @@ object Commands {
private val openMainMenu: (Array<String>) -> Unit = {
if (it.isNotEmpty()) {
if (it[0].lowercase() == "gui") {
- GuiEditManager.openGuiPositionEditor()
+ GuiEditManager.openGuiPositionEditor(hotkeyReminder = true)
} else {
ConfigGuiManager.openConfigGui(it.joinToString(" "))
}
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/gui/GUIConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/gui/GUIConfig.java
index 9e1816107..4eeadf221 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/gui/GUIConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/gui/GUIConfig.java
@@ -16,7 +16,7 @@ public class GUIConfig {
@ConfigOption(name = "Edit GUI Locations", desc = "Change the position of SkyHanni's overlays.")
@ConfigEditorButton(buttonText = "Edit")
- public Runnable positions = GuiEditManager::openGuiPositionEditor;
+ public Runnable positions = () -> GuiEditManager.openGuiPositionEditor(true);
@Expose
@ConfigOption(name = "Open Hotkey", desc = "Press this key to open the GUI Editor.")