Skip to content
Snippets Groups Projects
Verified Commit e3803ceb authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Avoid some duplicate property queries

parent 3b4f8f20
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment