diff --git a/resources/qml/InviteDialog.qml b/resources/qml/InviteDialog.qml index 2c0e15a7f6a1a52bf9cb5f268162917f055d141b..916bdd39bf625a5693dbaf28a4e375a73557aaee 100644 --- a/resources/qml/InviteDialog.qml +++ b/resources/qml/InviteDialog.qml @@ -34,7 +34,7 @@ ApplicationWindow { width: 340 palette: Nheko.colors color: Nheko.colors.window - flags: Qt.Dialog | Qt.WindowCloseButtonHint + flags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint Component.onCompleted: Nheko.reparent(inviteDialogRoot) Shortcut { diff --git a/resources/qml/RawMessageDialog.qml b/resources/qml/RawMessageDialog.qml index e2a476cdd68a598715ad091ed571effbf54238da..c171de7e0204878498056156bb0a001ed3299516 100644 --- a/resources/qml/RawMessageDialog.qml +++ b/resources/qml/RawMessageDialog.qml @@ -15,7 +15,7 @@ ApplicationWindow { width: 420 palette: Nheko.colors color: Nheko.colors.window - flags: Qt.Tool | Qt.WindowStaysOnTopHint | Qt.WindowCloseButtonHint + flags: Qt.Tool | Qt.WindowStaysOnTopHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint Component.onCompleted: Nheko.reparent(rawMessageRoot) Shortcut { diff --git a/resources/qml/ReadReceipts.qml b/resources/qml/ReadReceipts.qml index 9adbfd5c352515cc673647ee0f4c54d9fbfce9d2..e1dd7c00b1726494351a5d2b6931be62f25fd46e 100644 --- a/resources/qml/ReadReceipts.qml +++ b/resources/qml/ReadReceipts.qml @@ -19,7 +19,7 @@ ApplicationWindow { minimumWidth: headerTitle.width + 2 * Nheko.paddingMedium palette: Nheko.colors color: Nheko.colors.window - flags: Qt.Dialog | Qt.WindowCloseButtonHint + flags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint Component.onCompleted: Nheko.reparent(readReceiptsRoot) Shortcut { diff --git a/resources/qml/RoomDirectory.qml b/resources/qml/RoomDirectory.qml index cc36f00867e61291efb0127ae0af0e88ce7694da..2d7b3a34caf13772779b0b1b1c4e47a2098691b5 100644 --- a/resources/qml/RoomDirectory.qml +++ b/resources/qml/RoomDirectory.qml @@ -19,7 +19,7 @@ ApplicationWindow { palette: Nheko.colors color: Nheko.colors.window modality: Qt.WindowModal - flags: Qt.Dialog | Qt.WindowCloseButtonHint + flags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint Component.onCompleted: Nheko.reparent(roomDirectoryWindow) title: qsTr("Explore Public Rooms") diff --git a/resources/qml/RoomMembers.qml b/resources/qml/RoomMembers.qml index 8e44855c9f5339aaaf50bf8ebd602edeca2a82ae..62175bf053263d90199ba48c15d14b417841fd89 100644 --- a/resources/qml/RoomMembers.qml +++ b/resources/qml/RoomMembers.qml @@ -21,7 +21,7 @@ ApplicationWindow { minimumHeight: 420 palette: Nheko.colors color: Nheko.colors.window - flags: Qt.Dialog | Qt.WindowCloseButtonHint + flags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint Component.onCompleted: Nheko.reparent(roomMembersRoot) Shortcut { diff --git a/resources/qml/RoomSettings.qml b/resources/qml/RoomSettings.qml index 92cd431a1206f6b16125e65f7cc2308f16ed814c..a70cd71a0c795b97897fe18eef95ce4b16d7dbb7 100644 --- a/resources/qml/RoomSettings.qml +++ b/resources/qml/RoomSettings.qml @@ -20,7 +20,7 @@ ApplicationWindow { palette: Nheko.colors color: Nheko.colors.window modality: Qt.NonModal - flags: Qt.Dialog | Qt.WindowCloseButtonHint + flags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint Component.onCompleted: Nheko.reparent(roomSettingsDialog) title: qsTr("Room Settings") diff --git a/resources/qml/UserProfile.qml b/resources/qml/UserProfile.qml index 767d23173a81da598e5a2d7514d9d38ba1e27a47..95fd2bbe713eb6066925c060f86ec5d12ee56e1d 100644 --- a/resources/qml/UserProfile.qml +++ b/resources/qml/UserProfile.qml @@ -25,7 +25,7 @@ ApplicationWindow { color: Nheko.colors.window title: profile.isGlobalUserProfile ? qsTr("Global User Profile") : qsTr("Room User Profile") modality: Qt.NonModal - flags: Qt.Dialog | Qt.WindowCloseButtonHint + flags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint Component.onCompleted: Nheko.reparent(userProfileDialog) Shortcut { diff --git a/resources/qml/device-verification/DeviceVerification.qml b/resources/qml/device-verification/DeviceVerification.qml index 8e0271d689de8457ff1782116eb2199a6d568c60..01e3bad403e1ae57ff6310122a0371e2094af245 100644 --- a/resources/qml/device-verification/DeviceVerification.qml +++ b/resources/qml/device-verification/DeviceVerification.qml @@ -18,7 +18,7 @@ ApplicationWindow { palette: Nheko.colors height: stack.implicitHeight width: stack.implicitWidth - flags: Qt.Dialog | Qt.WindowCloseButtonHint + flags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint Component.onCompleted: Nheko.reparent(dialog) StackView { diff --git a/resources/qml/dialogs/ImagePackEditorDialog.qml b/resources/qml/dialogs/ImagePackEditorDialog.qml index b0f431f6c20fac599e4403d2af4aa71849f8c311..103f19a933d16dc6efb68632732c6dde6443d171 100644 --- a/resources/qml/dialogs/ImagePackEditorDialog.qml +++ b/resources/qml/dialogs/ImagePackEditorDialog.qml @@ -27,7 +27,7 @@ ApplicationWindow { palette: Nheko.colors color: Nheko.colors.base modality: Qt.WindowModal - flags: Qt.Dialog | Qt.WindowCloseButtonHint + flags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint AdaptiveLayout { id: adaptiveView diff --git a/resources/qml/dialogs/ImagePackSettingsDialog.qml b/resources/qml/dialogs/ImagePackSettingsDialog.qml index 5181619c03ca620323743d09e12cdfcfad171e15..b217abdd19faf95584b9d52641d78d677cdc0351 100644 --- a/resources/qml/dialogs/ImagePackSettingsDialog.qml +++ b/resources/qml/dialogs/ImagePackSettingsDialog.qml @@ -25,7 +25,7 @@ ApplicationWindow { palette: Nheko.colors color: Nheko.colors.base modality: Qt.NonModal - flags: Qt.Dialog | Qt.WindowCloseButtonHint + flags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint Component.onCompleted: Nheko.reparent(win) Component {