- Group the imports into Qt, KDE, NeoChat - Import the latest versions - Remove unused imports - Remove unused components - Unify license header styling
25 lines
495 B
QML
25 lines
495 B
QML
// SPDX-FileCopyrightText: 2019 Black Hat <bhat@encom.eu.org>
|
|
// SPDX-FileCopyrightText: 2020 Tobias Fella <fella@posteo.de>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
import org.kde.kirigami 2.15 as Kirigami
|
|
|
|
Kirigami.OverlaySheet {
|
|
|
|
property string sourceText
|
|
|
|
header: Kirigami.Heading {
|
|
text: i18n("Message Source")
|
|
}
|
|
|
|
TextArea {
|
|
text: sourceText
|
|
readOnly: true
|
|
wrapMode: Text.WordWrap
|
|
}
|
|
}
|
|
|