mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-12-03 15:48:48 +03:00
Avoid some duplicate property queries
This commit is contained in:
parent
3b4f8f2016
commit
e3803ceb9a
2 changed files with 2 additions and 2 deletions
|
@ -203,7 +203,7 @@ ScrollView {
|
|||
TimelineRow {
|
||||
id: timelinerow
|
||||
|
||||
y: section.active && section.visible ? section.y + section.height : 0
|
||||
y: section.visible && section.active ? section.y + section.height : 0
|
||||
}
|
||||
|
||||
Connections {
|
||||
|
|
|
@ -90,7 +90,7 @@ MouseArea {
|
|||
// Show the scrollbars
|
||||
flickable.flick(0, 0);
|
||||
flickable.contentY = newPos;
|
||||
cancelFlickStateTimer.start();
|
||||
cancelFlickStateTimer.restart();
|
||||
}
|
||||
|
||||
Timer {
|
||||
|
|
Loading…
Reference in a new issue