diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-08-04 02:27:50 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-08-04 02:27:50 +0200 |
commit | 87e81498b73d59e8173953079ca5d0d73c5c302f (patch) | |
tree | 8950646036c5019a47f201b9ccae8056716fd048 /resources/qml/delegates/Reply.qml | |
parent | Merge pull request #662 from LorenDB/qml-all-the-things (diff) | |
download | nheko-87e81498b73d59e8173953079ca5d0d73c5c302f.tar.xz |
Fix window placement on wayland and add close buttons
We explicitly set a parent. We can't assign to ApplicationWindow.transientParent though, only to Window.transientParent, so we just call setTransientParent in C++.
Diffstat (limited to 'resources/qml/delegates/Reply.qml')
-rw-r--r-- | resources/qml/delegates/Reply.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/delegates/Reply.qml b/resources/qml/delegates/Reply.qml index 75e3d617..3e02a940 100644 --- a/resources/qml/delegates/Reply.qml +++ b/resources/qml/delegates/Reply.qml @@ -5,7 +5,7 @@ import QtQuick 2.12 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.2 -import QtQuick.Window 2.2 +import QtQuick.Window 2.13 import im.nheko 1.0 Item { |