From 0e01e9a6a9e532ce6a1822cd747e841c043b85ae Mon Sep 17 00:00:00 2001 From: Diego Prado Gesto Date: Tue, 3 Apr 2018 17:24:05 +0200 Subject: [PATCH] CURA-5137 Reset to the global view when switching tabs --- plugins/Toolbox/Toolbox/Toolbox.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/Toolbox/Toolbox/Toolbox.py b/plugins/Toolbox/Toolbox/Toolbox.py index c1cdcd5741..b799754cbf 100644 --- a/plugins/Toolbox/Toolbox/Toolbox.py +++ b/plugins/Toolbox/Toolbox/Toolbox.py @@ -291,6 +291,7 @@ class Toolbox(QObject, Extension): def setCurrentView(self, view = "plugins"): self._current_view = view + self._detail_view = False self.viewChanged.emit() @pyqtProperty(str, fset = setCurrentView, notify = viewChanged)