Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
linphone-desktop
Commits
2b4c17be
Commit
2b4c17be
authored
Jun 05, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(ui/modules/Linphone/Chat/Chat): use a timeout to scroll at end
parent
1472adcb
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
11 deletions
+12
-11
Chat.js
linphone-desktop/ui/modules/Linphone/Chat/Chat.js
+0
-10
Chat.qml
linphone-desktop/ui/modules/Linphone/Chat/Chat.qml
+12
-1
No files found.
linphone-desktop/ui/modules/Linphone/Chat/Chat.js
View file @
2b4c17be
...
@@ -5,7 +5,6 @@
...
@@ -5,7 +5,6 @@
function
initView
()
{
function
initView
()
{
chat
.
tryToLoadMoreEntries
=
false
chat
.
tryToLoadMoreEntries
=
false
chat
.
bindToEnd
=
true
chat
.
bindToEnd
=
true
chat
.
positionViewAtEnd
()
}
}
function
loadMoreEntries
()
{
function
loadMoreEntries
()
{
...
@@ -48,15 +47,6 @@ function handleMovementStarted () {
...
@@ -48,15 +47,6 @@ function handleMovementStarted () {
chat
.
bindToEnd
=
false
chat
.
bindToEnd
=
false
}
}
function
handleDataChanged
(
_
,
bottomRight
)
{
var
n
=
chat
.
count
var
index
=
bottomRight
.
row
if
(
chat
.
bindToEnd
&&
index
+
1
===
n
)
{
chat
.
positionViewAtEnd
()
}
}
function
sendMessage
(
text
)
{
function
sendMessage
(
text
)
{
textArea
.
text
=
''
textArea
.
text
=
''
chat
.
bindToEnd
=
true
chat
.
bindToEnd
=
true
...
...
linphone-desktop/ui/modules/Linphone/Chat/Chat.qml
View file @
2b4c17be
...
@@ -65,7 +65,6 @@ Rectangle {
...
@@ -65,7 +65,6 @@ Rectangle {
// more entries.
// more entries.
onEntryTypeFilterChanged
:
Logic
.
initView
()
onEntryTypeFilterChanged
:
Logic
.
initView
()
onMoreEntriesLoaded
:
Logic
.
handleMoreEntriesLoaded
(
n
)
onMoreEntriesLoaded
:
Logic
.
handleMoreEntriesLoaded
(
n
)
onDataChanged
:
Logic
.
handleDataChanged
(
topLeft
,
bottomRight
)
}
}
// -----------------------------------------------------------------------
// -----------------------------------------------------------------------
...
@@ -209,4 +208,16 @@ Rectangle {
...
@@ -209,4 +208,16 @@ Rectangle {
}
}
}
}
}
}
// ---------------------------------------------------------------------------
// Scroll at end if necessary.
// ---------------------------------------------------------------------------
Timer
{
interval
:
100
repeat
:
true
running
:
true
onTriggered
:
chat
.
bindToEnd
&&
chat
.
positionViewAtEnd
()
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment