better support for opening chat in floating window
This commit is contained in:
@@ -178,9 +178,6 @@ Item {
|
||||
sourceComponent: MouseArea {
|
||||
onWheel: event => event.accepted = true
|
||||
preventStealing: true
|
||||
acceptedButtons: Qt.NoButton
|
||||
cursorShape: undefined
|
||||
enabled: dialogContent.opacity > 0
|
||||
clip: true
|
||||
implicitWidth: innerLayout.implicitWidth + innerLayout.anchors.margins * 2
|
||||
implicitHeight: innerLayout.implicitHeight + innerLayout.anchors.margins + innerLayout.anchors.bottomMargin
|
||||
|
||||
@@ -16,7 +16,7 @@ ConnectedRect {
|
||||
property string iconText: "open_in_new"
|
||||
property int verticalPadding: Tokens.padding.small
|
||||
|
||||
signal clicked
|
||||
signal clicked(event: MouseEvent)
|
||||
signal toggled(checked: bool)
|
||||
|
||||
Layout.fillWidth: true
|
||||
@@ -56,7 +56,7 @@ ConnectedRect {
|
||||
}
|
||||
|
||||
StateLayer {
|
||||
onClicked: root.clicked()
|
||||
onClicked: e => root.clicked(e)
|
||||
}
|
||||
|
||||
CustomSwitch {
|
||||
|
||||
Reference in New Issue
Block a user