Skip to content

Commit

Permalink
Fix an issue where highlights would stay on the screen when interacti…
Browse files Browse the repository at this point in the history
…ng with the recipe tree
  • Loading branch information
4rtzel committed Feb 13, 2022
1 parent 0efa155 commit c3c4f30
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions poe_arch_scanner.py
Expand Up @@ -393,6 +393,7 @@ def _scan_results_window_drag_and_save(self, event) -> None:
def _show_recipe_browser_tree(self, item: str, results: Dict[str, List[Tuple[int, int]]]) -> None:
if self._recipe_browser_window is not None:
self._recipe_browser_window.destroy()
self._clear_highlights(None)
self._recipe_browser_window = UIOverlay.create_toplevel_window()
self._recipe_browser_window.geometry(f'+{self._scan_results_window.winfo_x()}+{self._scan_results_window.winfo_y() + self._scan_results_window.winfo_height() + 20}')

Expand Down

0 comments on commit c3c4f30

Please sign in to comment.