diff --git a/app/qml/SettingsAdvancedTab.qml b/app/qml/SettingsAdvancedTab.qml index f7eb161..0adf851 100644 --- a/app/qml/SettingsAdvancedTab.qml +++ b/app/qml/SettingsAdvancedTab.qml @@ -89,7 +89,7 @@ ColumnLayout { } } - Label { + SizedLabel { text: appSettings.fps !== 0 ? appSettings.fps : qsTr("Max") } Label { @@ -109,7 +109,7 @@ ColumnLayout { enabled = true } } - Label { + SizedLabel { text: Math.round(txtslider.value * 100) + "%" } @@ -130,7 +130,7 @@ ColumnLayout { enabled = true } } - Label { + SizedLabel { text: Math.round(bloomSlider.value * 100) + "%" } @@ -151,7 +151,7 @@ ColumnLayout { enabled = true } } - Label { + SizedLabel { text: Math.round(burnInSlider.value * 100) + "%" } } diff --git a/app/qml/SettingsWindow.qml b/app/qml/SettingsWindow.qml index 83dc568..435516b 100644 --- a/app/qml/SettingsWindow.qml +++ b/app/qml/SettingsWindow.qml @@ -27,8 +27,8 @@ import QtQuick.Dialogs 1.1 Window { id: settings_window title: qsTr("Settings") - width: 600 - height: 600 + width: 640 + height: 640 property int tabmargins: 15