UI polish

This commit is contained in:
Cameron Gutman
2018-07-07 16:47:39 -07:00
parent 997fdc1ef6
commit bf671752df
2 changed files with 5 additions and 7 deletions

View File

@@ -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();
}
}

View File

@@ -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 {