Fixed radius issue of the chat input box. Fixes #1612
This commit is contained in:
parent
7230cdf7c7
commit
c6c8ed0858
|
@ -539,7 +539,7 @@ Rectangle {
|
|||
height: scrollView.height
|
||||
color: Style.current.inputBackground
|
||||
radius: control.isStatusUpdateInput ? 36 :
|
||||
height > defaultInputFieldHeight || extendedArea.visible ? 16 : 32
|
||||
height > defaultInputFieldHeight + 1 || extendedArea.visible ? 16 : 32
|
||||
|
||||
Rectangle {
|
||||
id: extendedArea
|
||||
|
|
Loading…
Reference in New Issue