diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-09-08 13:36:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-08 13:36:19 +0200 |
commit | 796ef7ca4139669f15e323c112378125760b5292 (patch) | |
tree | f389143acf59ee7a8fd095503c49ddfd16205443 /src/main/java/at/hannibal2/skyhanni/test | |
parent | 7519ef5249502f9aa14e350e5e5b8b83eab0e1eb (diff) | |
download | skyhanni-796ef7ca4139669f15e323c112378125760b5292.tar.gz skyhanni-796ef7ca4139669f15e323c112378125760b5292.tar.bz2 skyhanni-796ef7ca4139669f15e323c112378125760b5292.zip |
Backend: No List<Any> in Trackers (#2474)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Co-authored-by: Cal <cwolfson58@gmail.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/test')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/test/GraphEditor.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/test/GraphEditor.kt b/src/main/java/at/hannibal2/skyhanni/test/GraphEditor.kt index 8757f19bf..4564b9b72 100644 --- a/src/main/java/at/hannibal2/skyhanni/test/GraphEditor.kt +++ b/src/main/java/at/hannibal2/skyhanni/test/GraphEditor.kt @@ -79,6 +79,7 @@ object GraphEditor { activeNode?.name?.let { textBox.textBox = it } + textBox.makeActive() } else { textBox.clear() @@ -88,6 +89,7 @@ object GraphEditor { private var inTutorialMode = false + private val textBox = TextInput() private val nodeColor = LorenzColor.BLUE.addOpacity(200) |