diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-09-15 10:01:03 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-09-15 10:01:03 +0200 |
commit | b1a2491e9a84b8a4a6261b43f97d3a907d979f06 (patch) | |
tree | 02772c4060dca5c9abd6e6835ba69006ec81a3a0 /src/main/java/at/hannibal2/skyhanni/test | |
parent | 1de75a04d3751f4b99e64d9487c194e7d388a391 (diff) | |
download | skyhanni-b1a2491e9a84b8a4a6261b43f97d3a907d979f06.tar.gz skyhanni-b1a2491e9a84b8a4a6261b43f97d3a907d979f06.tar.bz2 skyhanni-b1a2491e9a84b8a4a6261b43f97d3a907d979f06.zip |
Added gui scale to the config editor command
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/test')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt index fbdb21257..c1aa5a313 100644 --- a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt +++ b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt @@ -263,7 +263,8 @@ object SkyHanniConfigSearchResetCommand { if (this is Position) { val x = javaClass.getDeclaredField("x").makeAccessible().get(this) val y = javaClass.getDeclaredField("y").makeAccessible().get(this) - return "($x, $y)" + val scale = javaClass.getDeclaredField("scale").makeAccessible().get(this) + return "($x, $y, $scale)" } if (this is String) { |