diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-09-24 21:10:27 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-09-24 21:10:27 +0200 |
commit | f922ef4f62790c65dd22c94bb3c6a39c678dad3a (patch) | |
tree | eb172415d7b3c119a8335d5e4e29dd0252b9030a | |
parent | e26f03b0daf1a8992b77f55fbfb1150919e70e7d (diff) | |
download | skyhanni-f922ef4f62790c65dd22c94bb3c6a39c678dad3a.tar.gz skyhanni-f922ef4f62790c65dd22c94bb3c6a39c678dad3a.tar.bz2 skyhanni-f922ef4f62790c65dd22c94bb3c6a39c678dad3a.zip |
fixed display flickering on setting new target
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/data/IslandGraphs.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/IslandGraphs.kt b/src/main/java/at/hannibal2/skyhanni/data/IslandGraphs.kt index 9e4639454..62459b6da 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/IslandGraphs.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/IslandGraphs.kt @@ -188,6 +188,7 @@ object IslandGraphs { } fun setNewGraph(graph: Graph) { + IslandAreas.display = null reset() currentIslandGraph = graph @@ -204,7 +205,6 @@ object IslandGraphs { currentTarget = null goal = null fastestPath = null - IslandAreas.display = null } @SubscribeEvent |