From 5295a19a199beff62fa8aa6721cd8736cd4aec96 Mon Sep 17 00:00:00 2001 From: jyamihud Date: Thu, 12 May 2022 15:13:21 +0300 Subject: [PATCH] Link updater works perfecly. --- editor.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/editor.py b/editor.py index 18cc3b3..45b5877 100644 --- a/editor.py +++ b/editor.py @@ -434,6 +434,9 @@ def add_item(w): def links_updater(new): + for i in linksbox.get_children(): + i.destroy() + for i in new: add_item_to_view(i, new[i]) win.data_is["links"][i] = new[i]