diff --git a/resources/qml/QuickSwitcher.qml b/resources/qml/QuickSwitcher.qml
index 29d9a9b2c1b6d5befaba9d3fb21546a8470d7fd7..889031635539d8f67c8e054d7975283f624b4ceb 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
+}