Skip to content
Snippets Groups Projects
Verified Commit b82c11bd authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix text corruption from unrounded pixel height

parent 7a356f38
No related branches found
No related tags found
No related merge requests found
Pipeline #868 failed
......@@ -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
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment