diff options
| author | Méven Car <[email protected]> | 2026-03-22 14:39:23 +0100 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2026-03-22 14:39:23 +0100 |
| commit | 36734d7d57283c932f1feabe87fd0cf2fa905359 (patch) | |
| tree | cf7a2ef4e0baa291697156b2daea7d6bd22b83b5 /src/kitemviews/kitemlistview.cpp | |
| parent | ea877b191a7975d800b9d0f5c9e971dea1179f21 (diff) | |
kitemsviews/listviewanimation: add a started signal
To allow to cancel an edit role when the widget starts being animated.
This was hooked to a function not a signal.
Diffstat (limited to 'src/kitemviews/kitemlistview.cpp')
| -rw-r--r-- | src/kitemviews/kitemlistview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kitemviews/kitemlistview.cpp b/src/kitemviews/kitemlistview.cpp index ccc96a7ae..1d02ee5c0 100644 --- a/src/kitemviews/kitemlistview.cpp +++ b/src/kitemviews/kitemlistview.cpp @@ -117,7 +117,7 @@ KItemListView::KItemListView(QGraphicsWidget *parent) m_animation = new KItemListViewAnimation(this); connect(m_animation, &KItemListViewAnimation::finished, this, &KItemListView::slotAnimationFinished); - connect(m_animation, &KItemListViewAnimation::start, this, &KItemListView::slotAnimationStarted); + connect(m_animation, &KItemListViewAnimation::started, this, &KItemListView::slotAnimationStarted); m_rubberBand = new KItemListRubberBand(this); connect(m_rubberBand, &KItemListRubberBand::activationChanged, this, &KItemListView::slotRubberBandActivationChanged); |
