From 970e8ef5e0c4c4e3ca9aae3473bd661e9b1213e0 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Wed, 10 Jul 2024 18:38:41 +0100 Subject: [PATCH] Fix EnrichmentResults behaviour on Windows --- source/app/ui/qml/Graphia/EnrichmentResults.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/app/ui/qml/Graphia/EnrichmentResults.qml b/source/app/ui/qml/Graphia/EnrichmentResults.qml index e97e55c18..5f4494421 100644 --- a/source/app/ui/qml/Graphia/EnrichmentResults.qml +++ b/source/app/ui/qml/Graphia/EnrichmentResults.qml @@ -47,7 +47,8 @@ ApplicationWindow onYChanged: { if(y < 0 || y >= Screen.desktopAvailableHeight) y = 0; } title: qsTr("Enrichment Results") - flags: (Qt.platform.os === "wasm" ? Qt.WindowTitleHint | Qt.WindowCloseButtonHint : 0) // QTBUG-126335 + flags: (Qt.platform.os === "wasm" ? Qt.WindowTitleHint | Qt.WindowCloseButtonHint : Qt.Window) // QTBUG-126335 + transientParent: null color: palette.window minimumWidth: 800