Reputation: 2842
when i added an item in a qlistwiget and reaches the bottom. A scroll bar appears, how can i ensurevisible an item that was newly added from the qlistwidget? Or how can i get the focus to the last index?
Upvotes: 4
Views: 3525
Reputation: 120818
After creating the new QListWidgetItem
, pass it to QListWidget.scrollToItem to ensure that it becomes visible.
Note that scrollToItem
also has a scroll hint parameter that allows fine-tuning of how the item is re-positioned in the list widget.
Upvotes: 2
Reputation: 67247
QListWidget
inherits from QAbstractItemView
, which has the methods you are looking for:
QAbstractItemView.scrollTo(ModelIndex index)
, using the index of your newly added item.QAbstractItemView.scrollToBottom()
.Upvotes: 4