Sat, 03 Nov 2012 16:58:06 +0100
Fixed an issue in the UserInterface class related to the activation of the numbers viewer.
UI/UserInterface.py | file | annotate | diff | comparison | revisions |
--- a/UI/UserInterface.py Sat Nov 03 15:55:07 2012 +0100 +++ b/UI/UserInterface.py Sat Nov 03 16:58:06 2012 +0100 @@ -3521,8 +3521,8 @@ Private slot to handle the activation of the Numbers Viewer. """ if self.layout == "Toolboxes": - self.lToolboxDock.show() - self.lToolbox.setCurrentWidget(self.numbersViewer) + self.hToolboxDock.show() + self.hToolboxDock.setCurrentWidget(self.numbersViewer) elif self.layout == "Sidebars": self.bottomSidebar.show() self.bottomSidebar.setCurrentWidget(self.numbersViewer)