diff --git a/launchers/qt/resources/qml/HFControls/HFButton.qml b/launchers/qt/resources/qml/HFControls/HFButton.qml index a4d077a1e7..727e139360 100644 --- a/launchers/qt/resources/qml/HFControls/HFButton.qml +++ b/launchers/qt/resources/qml/HFControls/HFButton.qml @@ -14,7 +14,7 @@ Button { property int backgroundWidth: 2 font.family: "Graphik Semibold" - font.pointSize: 12 + font.pixelSize: 15 background: Rectangle { implicitWidth: 100 diff --git a/launchers/qt/resources/qml/HFControls/HFTextField.qml b/launchers/qt/resources/qml/HFControls/HFTextField.qml index 133107ddd6..7b5dde0b23 100644 --- a/launchers/qt/resources/qml/HFControls/HFTextField.qml +++ b/launchers/qt/resources/qml/HFControls/HFTextField.qml @@ -7,7 +7,7 @@ TextField { height: 50 font.family: "Graphik Regular" - font.pointSize: 10.5 + font.pixelSize: 14 color: (text.length == 0 || !enabled) ? "#7e8c81" : "#000000" property bool togglePasswordField: false diff --git a/launchers/qt/resources/qml/HFControls/HFTextHeader.qml b/launchers/qt/resources/qml/HFControls/HFTextHeader.qml index f0349d7f5c..914ead46a1 100644 --- a/launchers/qt/resources/qml/HFControls/HFTextHeader.qml +++ b/launchers/qt/resources/qml/HFControls/HFTextHeader.qml @@ -3,6 +3,6 @@ import QtQuick 2.1 Text { font.family: "Graphik Semibold" - font.pointSize: 24 + font.pixelSize: 32 color: "#ffffff" } diff --git a/launchers/qt/resources/qml/HFControls/HFTextLogo.qml b/launchers/qt/resources/qml/HFControls/HFTextLogo.qml index 08025ef715..b8d06f16f1 100644 --- a/launchers/qt/resources/qml/HFControls/HFTextLogo.qml +++ b/launchers/qt/resources/qml/HFControls/HFTextLogo.qml @@ -5,7 +5,7 @@ Text { text: "High Fidelity" font.bold: true font.family: "Graphik Semibold" - font.pointSize: 14 + font.pixelSize: 17 font.letterSpacing: -1 color: "#FFFFFF" } diff --git a/launchers/qt/resources/qml/HFControls/HFTextRegular.qml b/launchers/qt/resources/qml/HFControls/HFTextRegular.qml index 58103d6118..fd43aafe55 100644 --- a/launchers/qt/resources/qml/HFControls/HFTextRegular.qml +++ b/launchers/qt/resources/qml/HFControls/HFTextRegular.qml @@ -5,7 +5,7 @@ Text { id: root font.family: "Graphik Regular" - font.pointSize: 10.5 + font.pixelSize: 14 color: "#C4C4C4" linkColor: color diff --git a/launchers/qt/resources/qml/root.qml b/launchers/qt/resources/qml/root.qml index e3f82450f2..b87f8e7450 100644 --- a/launchers/qt/resources/qml/root.qml +++ b/launchers/qt/resources/qml/root.qml @@ -7,8 +7,6 @@ import "HFControls" Item { id: root - width: 627 - height: 540 Loader { anchors.fill: parent id: loader @@ -34,8 +32,6 @@ Item { HFTextRegular { id: buildInfo - font.pixelSize: 12 - anchors { leftMargin: 10 rightMargin: 10 diff --git a/launchers/qt/src/Launcher.cpp b/launchers/qt/src/Launcher.cpp index cf80604c39..90b321ecb6 100644 --- a/launchers/qt/src/Launcher.cpp +++ b/launchers/qt/src/Launcher.cpp @@ -37,6 +37,12 @@ Launcher::Launcher(int& argc, char**argv) : QGuiApplication(argc, argv) { _launcherWindow->setWidth(627); _launcherWindow->setResizeMode(QQuickView::SizeRootObjectToView); _launcherWindow->show(); + + auto window = allWindows()[0]; + window->setMaximumHeight(540); + window->setMaximumWidth(627); + window->setMinimumHeight(540); + window->setMinimumWidth(627); } Launcher::~Launcher() {