diff --git a/src/apps/qml/ShowThreadMessagesDialog.qml b/src/apps/qml/ShowThreadMessagesDialog.qml index b8061460..21c1fe96 100644 --- a/src/apps/qml/ShowThreadMessagesDialog.qml +++ b/src/apps/qml/ShowThreadMessagesDialog.qml @@ -1,56 +1,56 @@ /* Copyright (c) 2019 Montel Laurent This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License or ( at your option ) version 3 or, at the discretion of KDE e.V. ( which shall act as a proxy as in section 14 of the GPLv3 ), any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import QtQuick.Layouts 1.12 import QtQuick.Controls 2.5 as QQC2 import QtQuick.Window 2.2 import QtQuick 2.9 import org.kde.kirigami 2.7 as Kirigami QQC2.Dialog { id: showThreadMessagesDialog title: i18n("Thread Messages") //Add room name too. property QtObject threadMessagesModel property string threadMessageId anchors.centerIn: parent modal: true focus: true standardButtons: QQC2.Dialog.Close - width: 800; + width: 800 height: 600 ColumnLayout { ActiveChat { width: 600; height: 400 id: threadMessageListView model: threadMessagesModel rcAccount: appid.rocketChatAccount roomId: appid.selectedRoomID anchors.fill: parent clip: true QQC2.ScrollBar.vertical: QQC2.ScrollBar { } } } }