fix: fix qml warnings caused by rebases
This commit is contained in:
parent
ba01d6ad75
commit
1bcfd9df14
|
@ -168,6 +168,14 @@ ScrollView {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Connections {
|
||||||
|
target: chatsModel
|
||||||
|
|
||||||
|
onAppReady: {
|
||||||
|
chatLogView.scrollToBottom(true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Connections {
|
Connections {
|
||||||
target: chatsModel.messageView
|
target: chatsModel.messageView
|
||||||
onMessagesLoaded: {
|
onMessagesLoaded: {
|
||||||
|
@ -188,10 +196,6 @@ ScrollView {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onAppReady: {
|
|
||||||
chatLogView.scrollToBottom(true)
|
|
||||||
}
|
|
||||||
|
|
||||||
onMessageNotificationPushed: function(chatId, msg, messageType, chatType, timestamp, identicon, username, hasMention, isAddedContact, channelName) {
|
onMessageNotificationPushed: function(chatId, msg, messageType, chatType, timestamp, identicon, username, hasMention, isAddedContact, channelName) {
|
||||||
if (appSettings.notificationSetting == Constants.notifyAllMessages ||
|
if (appSettings.notificationSetting == Constants.notifyAllMessages ||
|
||||||
(appSettings.notificationSetting == Constants.notifyJustMentions && hasMention)) {
|
(appSettings.notificationSetting == Constants.notifyJustMentions && hasMention)) {
|
||||||
|
|
Loading…
Reference in New Issue