def bring_to_front(self):
""" Brings the terminal window to the front and places the cursor in the textbox """
self._textbox.setFocus()
self.setWindowState(self.windowState() & ~Qt.WindowMinimized | Qt.WindowActive)
self.raise_()
self.activateWindow()
# Handlers that update the labels at the bottom
评论列表
文章目录