Stdout stops showing in QTextEdit once another window has opened
问题 I am trying to get stdout and error messages to show on my main window. The window is by pyqt and made via designer. I have a QTextEdit on it. This is where the output should show itself. Also I have a dialog box (again made via designer) where i set some settings for my program before running it. The dialog box is opened like this: def open_settings(self): dialog = SettingsDialog() dialog.open_settings_tab() # its on a tab widget I already read and used the info on these links to achieve my