Skip to content

Commit

Permalink
Animation time
Browse files Browse the repository at this point in the history
Signed-off-by: AmrElsersy <[email protected]>
  • Loading branch information
AmrElsersy committed Aug 3, 2020
1 parent d7424f1 commit 234d66b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/plugins/topic_viewer/TopicViewer.qml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ TreeView {

ToolTip {
id: tool_tip
delay: 100
delay: 200
timeout: 2000
text: (model === null) ? "Type ?" : "Type: " + model.type;
visible: dragMouse.containsMouse
Expand Down Expand Up @@ -231,7 +231,7 @@ TreeView {
NumberAnimation {
property: "y";
from: (tree.__listView.currentItem) ? tree.__listView.currentItem.y : 0;
duration: 100;
duration: 200;
easing.type: Easing.OutQuad
}
}
Expand All @@ -240,7 +240,7 @@ TreeView {
id: displacedTransition
NumberAnimation {
property: "y";
duration: 100;
duration: 200;
easing.type: Easing.OutQuad;
}
}
Expand Down

0 comments on commit 234d66b

Please sign in to comment.