mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-07-21 18:51:02 -04:00
refactor: Restructure project into sources/tests layout and dissolve PluginLLMCore
This commit is contained in:
26
sources/UIControls/qml/FadeListItemAnimation.qml
Normal file
26
sources/UIControls/qml/FadeListItemAnimation.qml
Normal file
@@ -0,0 +1,26 @@
|
||||
// Copyright (C) 2025-2026 Petr Mironychev
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||
// Additional attribution terms under GPLv3 §7(b) apply — see LICENSE
|
||||
|
||||
import QtQuick
|
||||
|
||||
ParallelAnimation {
|
||||
id: root
|
||||
|
||||
property Item targetObject: parent
|
||||
|
||||
NumberAnimation {
|
||||
target: root.targetObject
|
||||
property: "opacity"
|
||||
to: 0
|
||||
duration: 200
|
||||
easing.type: Easing.InQuad
|
||||
}
|
||||
NumberAnimation {
|
||||
target: root.targetObject
|
||||
property: "height"
|
||||
to: 0
|
||||
duration: 250
|
||||
easing.type: Easing.InQuad
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user