1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/QuickSwitcher.qml b/resources/qml/QuickSwitcher.qml
index 29d9a9b2..88903163 100644
--- a/resources/qml/QuickSwitcher.qml
+++ b/resources/qml/QuickSwitcher.qml
@@ -24,7 +24,7 @@ Popup {
id: roomTextInput
anchors.fill: parent
- font.pixelSize: quickSwitcher.textHeight * 0.6
+ font.pixelSize: Math.ceil(quickSwitcher.textHeight * 0.6)
padding: textMargin
color: colors.text
@@ -94,4 +94,4 @@ Popup {
timer.triggered.connect(cb);
timer.start();
}
-}
\ No newline at end of file
+}
|