From 57330bb2cd2ec4785c1c5316ad495be2c82fa0bb Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sun, 24 Jan 2021 22:47:49 +0100 Subject: [PATCH] Make sure project tree is updated before Project Details dialog is opened --- nw/guimain.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nw/guimain.py b/nw/guimain.py index e48987bc..64e0a2e0 100644 --- a/nw/guimain.py +++ b/nw/guimain.py @@ -965,6 +965,8 @@ class GuiMain(QMainWindow): logger.error("No project open") return + self.treeView.flushTreeOrder() + dlgDetails = GuiProjectDetails(self, self.theProject) dlgDetails.setModal(False) dlgDetails.show()