src/eric7/UI/UserInterface.py

branch
eric7
changeset 9457
1e0a9199479e
parent 9448
ea215f7afab3
child 9470
34f2493c1d3f
equal deleted inserted replaced
9456:94c606dba5d8 9457:1e0a9199479e
5671 def __activateShell(self): 5671 def __activateShell(self):
5672 """ 5672 """
5673 Private slot to handle the activation of the Shell window. 5673 Private slot to handle the activation of the Shell window.
5674 """ 5674 """
5675 if self.__layoutType == "Toolboxes": 5675 if self.__layoutType == "Toolboxes":
5676 self.__shellParent.show() 5676 self.hToolboxDock.show()
5677 self.__shellParent.widget().setCurrentWidget(self.shellAssembly) 5677 self.hToolboxDock.setCurrentWidget(self.shellAssembly)
5678 elif self.__layoutType == "Sidebars": 5678 elif self.__layoutType == "Sidebars":
5679 self.__shellParent.show() 5679 self.bottomSidebar.show()
5680 self.__shellParent.setCurrentWidget(self.shellAssembly) 5680 self.bottomSidebar.setCurrentWidget(self.shellAssembly)
5681 self.shell.setFocus(Qt.FocusReason.ActiveWindowFocusReason) 5681 self.shell.setFocus(Qt.FocusReason.ActiveWindowFocusReason)
5682 5682
5683 def __activateLogViewer(self): 5683 def __activateLogViewer(self):
5684 """ 5684 """
5685 Private slot to handle the activation of the Log Viewer. 5685 Private slot to handle the activation of the Log Viewer.

eric ide

mercurial