Skip to content
Snippets Groups Projects
Commit f9aad362 authored by Alice Russell's avatar Alice Russell
Browse files

Change cpp interfaces to show if they are minimized

parent 284d7689
No related branches found
No related tags found
No related merge requests found
......@@ -386,7 +386,10 @@ class MainWindow(QMainWindow):
interface.setParent(self, interface.windowFlags())
interface.show()
else:
window.raise_()
if (window.windowState() == Qt.WindowState.WindowMinimized):
window.showNormal()
else:
window.raise_()
def populate_interfaces_menu(self):
"""Populate then Interfaces menu with all Python and C++ interfaces"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment