From f0e25991fe3a0ecde0c18b2acc604222341a443e Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 16 Feb 2016 00:28:51 +0100 Subject: [PATCH] gui/experiments: set icon of MDI subwindows --- artiq/gui/experiments.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/artiq/gui/experiments.py b/artiq/gui/experiments.py index 60c6e5da8..aeb4cfff4 100644 --- a/artiq/gui/experiments.py +++ b/artiq/gui/experiments.py @@ -137,6 +137,8 @@ class _ExperimentDock(QtWidgets.QMdiSubWindow): def __init__(self, manager, expurl): QtWidgets.QMdiSubWindow.__init__(self) self.setWindowTitle(expurl) + self.setWindowIcon(QtWidgets.QApplication.style().standardIcon( + QtWidgets.QStyle.SP_FileDialogContentsView)) self.layout = QtWidgets.QGridLayout() top_widget = QtWidgets.QWidget()