diff options
author | link2xt <link2xt@testrun.org> | 2021-03-06 21:26:35 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2021-03-06 21:26:35 +0300 |
commit | 186f1c612a9887c0d546cfbb9da9e0f2dde72f21 (patch) | |
tree | 6168832a9d94482a979d6f0f2fbe585785e3b481 | |
parent | c46b54ad662c4e7bd96e3745b6ff5bb72da3c671 (diff) | |
download | kdeltachat-186f1c612a9887c0d546cfbb9da9e0f2dde72f21.tar.gz kdeltachat-186f1c612a9887c0d546cfbb9da9e0f2dde72f21.zip |
Remove SplashPage.qml
-rw-r--r-- | qml.qrc | 1 | ||||
-rw-r--r-- | qml/SplashPage.qml | 8 | ||||
-rw-r--r-- | qml/main.qml | 2 |
3 files changed, 1 insertions, 10 deletions
@@ -1,7 +1,6 @@ <RCC> <qresource prefix="/"> <file>qml/main.qml</file> - <file>qml/SplashPage.qml</file> <file>qml/AccountsPage.qml</file> <file>qml/ChatPage.qml</file> <file>qml/ChatlistPage.qml</file> diff --git a/qml/SplashPage.qml b/qml/SplashPage.qml deleted file mode 100644 index d3af1c9..0000000 --- a/qml/SplashPage.qml +++ /dev/null @@ -1,8 +0,0 @@ -import QtQuick 2.12 -import org.kde.kirigami 2.12 as Kirigami - -Kirigami.Page { - id: splashPage - - title: qsTr("Delta Chat") -} diff --git a/qml/main.qml b/qml/main.qml index c95c445..a4b8b09 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -14,7 +14,7 @@ Kirigami.ApplicationWindow { Component {id: accountsPage; AccountsPage {}} - pageStack.initialPage: SplashPage {} + pageStack.initialPage: Kirigami.Page {} globalDrawer: Kirigami.GlobalDrawer { header: Controls.Switch { |