From bf671752dfab34515dff36cffb4babc3dc6ce44b Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 7 Jul 2018 16:47:39 -0700 Subject: [PATCH] UI polish --- app/gui/AppView.qml | 3 ++- app/gui/PcView.qml | 9 +++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/app/gui/AppView.qml b/app/gui/AppView.qml index 5953b1ed..ce7ceef7 100644 --- a/app/gui/AppView.qml +++ b/app/gui/AppView.qml @@ -65,7 +65,8 @@ GridView { MouseArea { anchors.fill: parent onClicked: { - var session = appModel.createSessionForGame(index); + // TODO: Check if a different game is running + var session = appModel.createSessionForApp(index); session.exec(); } } diff --git a/app/gui/PcView.qml b/app/gui/PcView.qml index f4088b81..84bf4635 100644 --- a/app/gui/PcView.qml +++ b/app/gui/PcView.qml @@ -86,10 +86,9 @@ GridView { width: parent.width anchors.top: pcIcon.bottom - minimumPointSize: 12 - font.pointSize: 48 + font.pointSize: 36 horizontalAlignment: Text.AlignHCenter - fontSizeMode: Text.HorizontalFit + wrapMode: Text.Wrap } Text { @@ -120,10 +119,8 @@ GridView { width: parent.width anchors.top: pcNameText.bottom - minimumPointSize: 12 - font.pointSize: 36 + font.pointSize: 24 horizontalAlignment: Text.AlignHCenter - fontSizeMode: Text.HorizontalFit } MouseArea {