perf(chatScroll): Fix connection warnings
This commit is contained in:
parent
eb60d90346
commit
4e3e245675
|
@ -293,12 +293,12 @@ Rectangle {
|
|||
enabled: control.emojiPopupOpened
|
||||
target: emojiPopup
|
||||
|
||||
onEmojiSelected: function (text, atCursor) {
|
||||
function onEmojiSelected(text, atCursor) {
|
||||
insertInTextInput(atCursor ? messageInputField.cursorPosition : messageInputField.length, text)
|
||||
emojiBtn.highlighted = false
|
||||
messageInputField.forceActiveFocus();
|
||||
}
|
||||
onClosed: {
|
||||
function onClosed() {
|
||||
emojiBtn.highlighted = false
|
||||
control.emojiPopupOpened = false
|
||||
}
|
||||
|
@ -308,12 +308,12 @@ Rectangle {
|
|||
enabled: control.stickersPopupOpened
|
||||
target: control.stickersPopup
|
||||
|
||||
onStickerSelected: {
|
||||
function onStickerSelected(hashId, packId, url) {
|
||||
control.stickerSelected(hashId, packId, url)
|
||||
control.hideExtendedArea();
|
||||
messageInputField.forceActiveFocus();
|
||||
}
|
||||
onClosed: {
|
||||
function onClosed() {
|
||||
stickersBtn.highlighted = false
|
||||
control.stickersPopupOpened = false
|
||||
}
|
||||
|
@ -908,7 +908,7 @@ Rectangle {
|
|||
enabled: control.isActiveChannel
|
||||
target: Global.dragArea
|
||||
ignoreUnknownSignals: true
|
||||
onDroppedOnValidScreen: (drop) => {
|
||||
function onDroppedOnValidScreen(drop) {
|
||||
let validImages = validateImages(drop.urls)
|
||||
if (validImages.length > 0) {
|
||||
showImageArea(validImages)
|
||||
|
|
|
@ -51,16 +51,16 @@ Column {
|
|||
|
||||
Connections {
|
||||
target: localAccountSensitiveSettings
|
||||
onWhitelistedUnfurlingSitesChanged: {
|
||||
function onWhitelistedUnfurlingSitesChanged() {
|
||||
fetched = false
|
||||
linkMessageLoader.sourceComponent = undefined
|
||||
linkMessageLoader.sourceComponent = linkMessageLoader.getSourceComponent()
|
||||
}
|
||||
onNeverAskAboutUnfurlingAgainChanged: {
|
||||
function onNeverAskAboutUnfurlingAgainChanged() {
|
||||
linkMessageLoader.sourceComponent = undefined
|
||||
linkMessageLoader.sourceComponent = linkMessageLoader.getSourceComponent()
|
||||
}
|
||||
onDisplayChatImagesChanged: {
|
||||
function onDisplayChatImagesChanged() {
|
||||
linkMessageLoader.sourceComponent = undefined
|
||||
linkMessageLoader.sourceComponent = linkMessageLoader.getSourceComponent()
|
||||
}
|
||||
|
@ -106,7 +106,7 @@ Column {
|
|||
id: linkCommunityFetchConnections
|
||||
enabled: false
|
||||
target: root.store.communitiesModuleInst
|
||||
onCommunityAdded: {
|
||||
function onCommunityAdded(communityId) {
|
||||
if (communityId !== linkData.communityId) {
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue