Version: 1.4.2 (using KDE 3.4.2, Kubuntu Package 4:3.4.2-0ubuntu4 ) Compiler: Target: i486-linux-gnu OS: Linux (i686) release 2.6.12-8-386 If you select a reference from within the item-text the new item is not selected in the treeview. This is very unintuitive.
Fixed in trunk already.
SVN commit 633229 by pino: Visually select the new item when switching to another item through the References links. BUG: 112414 M +6 -1 kdeeduglossary.cpp --- branches/KDE/3.5/kdeedu/libkdeedu/kdeeduui/kdeeduglossary.cpp #633228:633229 @@ -241,7 +241,12 @@ } ++it; } - slotClicked( found ); + if ( found ) + { + m_glosstree->ensureItemVisible( found ); + m_glosstree->setCurrentItem( found ); + slotClicked( found ); + } } void GlossaryDialog::updateTree()