diff options
-rw-r--r-- | qt-mobile/qml/TopBar.qml | 2 | ||||
-rw-r--r-- | qt-mobile/qml/main.qml | 2 | ||||
-rw-r--r-- | subsurface-mobile-helper.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/qt-mobile/qml/TopBar.qml b/qt-mobile/qml/TopBar.qml index e573af821..5ebf3b390 100644 --- a/qt-mobile/qml/TopBar.qml +++ b/qt-mobile/qml/TopBar.qml @@ -39,7 +39,7 @@ Rectangle { height: width } MobileComponents.Label { - text: qsTr("Subsurface mobile") + text: qsTr("Subsurface-mobile") height: subsurfaceLogo.height anchors { left: subsurfaceLogo.right diff --git a/qt-mobile/qml/main.qml b/qt-mobile/qml/main.qml index 8f8880229..000964acc 100644 --- a/qt-mobile/qml/main.qml +++ b/qt-mobile/qml/main.qml @@ -10,7 +10,7 @@ import org.kde.plasma.mobilecomponents 0.2 as MobileComponents MobileComponents.ApplicationWindow { id: rootItem - title: qsTr("Subsurface mobile") + title: qsTr("Subsurface-mobile") property bool fullscreen: true FontMetrics { diff --git a/subsurface-mobile-helper.cpp b/subsurface-mobile-helper.cpp index 8dd28f60d..9d9875ead 100644 --- a/subsurface-mobile-helper.cpp +++ b/subsurface-mobile-helper.cpp @@ -61,7 +61,7 @@ void run_ui() } QQuickWindow *qml_window = qobject_cast<QQuickWindow *>(qqWindowObject); qml_window->setIcon(QIcon(":/subsurface-mobile-icon")); - qqWindowObject->setProperty("messageText", QVariant("Subsurface mobile startup")); + qqWindowObject->setProperty("messageText", QVariant("Subsurface-mobile startup")); #if !defined(Q_OS_ANDROID) qml_window->setHeight(1200); qml_window->setWidth(800); |