Fix invisible room pane filter placeholder text

This commit is contained in:
miruka 2020-03-13 10:34:37 -04:00
parent 190eb58187
commit 15afce3393

View File

@ -50,7 +50,6 @@ HColumnLayout {
saveName: "memberFilterField"
saveId: chat.roomId
placeholderText: qsTr("Filter members")
backgroundColor:
theme.chat.roomPane.bottomBar.filterMembers.background
bordered: false
@ -59,6 +58,10 @@ HColumnLayout {
Layout.fillWidth: true
Layout.fillHeight: true
// FIXME: fails to display sometimes for some reason if
// declared normally
Component.onCompleted: placeholderText = qsTr("Filter members")
Behavior on opacity { HNumberAnimation {} }
}