diff --git a/src/qml/ContentView.qml b/src/qml/ContentView.qml --- a/src/qml/ContentView.qml +++ b/src/qml/ContentView.qml @@ -282,12 +282,6 @@ } } } - - Behavior on border.color { - ColorAnimation { - duration: 300 - } - } } } diff --git a/src/qml/FileBrowserDelegate.qml b/src/qml/FileBrowserDelegate.qml --- a/src/qml/FileBrowserDelegate.qml +++ b/src/qml/FileBrowserDelegate.qml @@ -326,27 +326,5 @@ } } ] - - transitions: [ - Transition { - SequentialAnimation { - PropertyAction { - properties: "active" - } - ParallelAnimation { - NumberAnimation { - properties: "opacity" - easing.type: Easing.InOutQuad - duration: 300 - } - ColorAnimation { - properties: "color" - easing.type: Easing.InOutQuad - duration: 300 - } - } - } - } - ] } diff --git a/src/qml/GridBrowserDelegate.qml b/src/qml/GridBrowserDelegate.qml --- a/src/qml/GridBrowserDelegate.qml +++ b/src/qml/GridBrowserDelegate.qml @@ -378,26 +378,4 @@ } } ] - - transitions: [ - Transition { - SequentialAnimation { - PropertyAction { - properties: "active" - } - ParallelAnimation { - NumberAnimation { - properties: "opacity" - easing.type: Easing.InOutQuad - duration: 300 - } - ColorAnimation { - properties: "color" - easing.type: Easing.InOutQuad - duration: 300 - } - } - } - } - ] } diff --git a/src/qml/MediaTrackDelegate.qml b/src/qml/MediaTrackDelegate.qml --- a/src/qml/MediaTrackDelegate.qml +++ b/src/qml/MediaTrackDelegate.qml @@ -458,25 +458,4 @@ } } ] - - transitions: [ - Transition { - SequentialAnimation { - PropertyAction { - properties: "active" - } - ParallelAnimation { - NumberAnimation { - properties: "opacity, hoverWidgetOpacity" - easing.type: Easing.InOutQuad - duration: 200 - } - ColorAnimation { - properties: "color" - duration: 350 - } - } - } - } - ] } diff --git a/src/qml/PlayListEntry.qml b/src/qml/PlayListEntry.qml --- a/src/qml/PlayListEntry.qml +++ b/src/qml/PlayListEntry.qml @@ -529,18 +529,5 @@ } } ] - transitions: Transition { - ParallelAnimation { - NumberAnimation { - properties: "opacity, hoverWidgetOpacity" - easing.type: Easing.InOutQuad - duration: 250 - } - ColorAnimation { - properties: "color" - duration: 250 - } - } - } } diff --git a/src/qml/ViewSelectorDelegate.qml b/src/qml/ViewSelectorDelegate.qml --- a/src/qml/ViewSelectorDelegate.qml +++ b/src/qml/ViewSelectorDelegate.qml @@ -237,20 +237,4 @@ } } ] - - transitions: [ - Transition { - ParallelAnimation { - NumberAnimation { - properties: "opacity" - easing.type: Easing.InOutQuad - duration: 200 - } - ColorAnimation { - properties: "color" - duration: 250 - } - } - } - ] }