Hello!

I have tried in a simple QTreeWidget, created with Qt-Designer, with

Qt Code:
  1. treeWidget->setCurrentItem( previous );
To copy to clipboard, switch view to plain text mode 

to jump to a specific Entry called 'Banken' in this case. It works, but after doing that all items between the old one and the new one are marked like selected.




But they are not, because
Qt Code:
  1. QList<QTreeWidgetItem *> QTreeWidget::selectedItems () const
To copy to clipboard, switch view to plain text mode 
returns a QList where size = 1.


I have tried it with QT-4.7.3 (Linux/OpenSource). I can't try an older version because I am using some new functions from Qt-4.7.

Any ideas what's going wrong here?

Thanks in advance.

Guenther