Up to now the layout has only been updated when the geometry has
not been changed for at least 300 ms. This has been changed so
that at least each 300 ms the layout is updated to give a better
visual feedback when resizing the window.
m_layouter->setSize(rect.size());
}
m_layouter->setSize(rect.size());
}
- m_layoutTimer->start();
+ if (!m_layoutTimer->isActive()) {
+ m_layoutTimer->start();
+ }
}
int KItemListView::itemAt(const QPointF& pos) const
}
int KItemListView::itemAt(const QPointF& pos) const