make results window active and raise it when calculating

This commit is contained in:
Roland W-H 2025-04-26 16:38:37 +01:00
parent 593dec96d1
commit e2ca298919

View File

@ -137,7 +137,10 @@ class SIPPCompare(QMainWindow):
def show_output_win(self): def show_output_win(self):
# Refresh the results when new fees are calculated # Refresh the results when new fees are calculated
self.output_win.display_output(self.results, 1) self.output_win.display_output(self.results, 1)
self.output_win.activateWindow()
self.output_win.raise_()
self.output_win.show() self.output_win.show()
QApplication.alert(self.output_win)
def show_platform_list(self): def show_platform_list(self):
self.platform_list_win.show() self.platform_list_win.show()