Skip to content

Commit 348e408

Browse files
committed
Show GUI Keybind in settings
1 parent 315e1fb commit 348e408

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/kotlin/com/lambda/gui/components/ClickGuiLayout.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ object ClickGuiLayout : Loadable, Configurable(GuiConfig) {
5757
override val name = "GUI"
5858
var open = false
5959
var developerMode = false
60-
val keybind by setting("Keybind", KeyCode.Y) { false }
60+
val keybind by setting("Keybind", KeyCode.Y)
6161

6262
private enum class Group(override val displayName: String) : NamedEnum {
6363
General("General"),
@@ -210,7 +210,7 @@ object ClickGuiLayout : Loadable, Configurable(GuiConfig) {
210210
val tags = if (developerMode) shownTags + ModuleTag.DEBUG else shownTags
211211
if (tags.isEmpty()) return@buildLayout
212212

213-
var nextX = mc.window.width/2.6f // FixMe: hardcoded to fit the combat tag at the most significant position
213+
var nextX = mc.window.width / 2.6f // FixMe: hardcoded to fit the combat tag at the most significant position
214214
val baseY = MenuBar.height + 10f
215215

216216
tags.forEach { tag ->

0 commit comments

Comments
 (0)