| Summary: | Glossary: Always select active item | ||
|---|---|---|---|
| Product: | [Applications] kalzium | Reporter: | Carsten Niehaus <cniehaus> |
| Component: | general | Assignee: | Kalzium Developers <kalzium> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Carsten Niehaus
2005-09-11 13:44:25 UTC
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()
|