1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/RoomDirectory.qml b/resources/qml/RoomDirectory.qml
index e6fc2b84..7298a7cd 100644
--- a/resources/qml/RoomDirectory.qml
+++ b/resources/qml/RoomDirectory.qml
@@ -27,7 +27,7 @@ ApplicationWindow {
spacing: Nheko.paddingMedium
width: parent.width
- implicitHeight: roomTextInput.height
+ implicitHeight: roomSearch.height
MatrixTextField {
id: roomSearch
@@ -35,7 +35,7 @@ ApplicationWindow {
Layout.fillWidth: true
font.pixelSize: fontMetrics.font.pixelSize
- padding: Nheko.paddingSmall
+ padding: Math.ceil(1.5 * Nheko.paddingSmall)
color: Nheko.colors.text
placeholderText: qsTr("Search for public rooms")
onTextChanged: searchTimer.restart()
|