slight changes to clipboard history preview and item delegate
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 10s
Python / lint-format (pull_request) Successful in 16s
Python / test (pull_request) Successful in 32s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m10s

This commit is contained in:
2026-06-14 23:33:12 +02:00
parent 2a50732bc2
commit 7e38f3f428
2 changed files with 85 additions and 88 deletions
+9 -4
View File
@@ -27,8 +27,7 @@ Text {
enabled: root.animate
SequentialAnimation {
Anim {
property: root.animateProp
TAnim {
target: root
to: root.animateFrom
type: Anim.FastEffects
@@ -37,12 +36,18 @@ Text {
PropertyAction {
}
Anim {
property: root.animateProp
TAnim {
target: root
to: root.animateTo
type: Anim.DefaultEffects
}
}
}
component TAnim: Anim {
duration: root.animateDuration / 2
properties: root.animateProp.split(",").length > 1 ? root.animateProp : ""
property: root.animateProp.split(",").length === 1 ? root.animateProp : ""
target: root
}
}