Skip to content

Commit

Permalink
Fix EnrichmentResults behaviour on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
timangus committed Jul 10, 2024
1 parent 1271c6a commit 970e8ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/app/ui/qml/Graphia/EnrichmentResults.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 970e8ef

Please sign in to comment.