| Summary: | Close Other Tabs shortcut key closes wrong tabs | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | Kevin Yeung <k74yeung-kde> |
| Component: | general | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | kde |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Kevin Yeung
2005-06-28 16:17:47 UTC
SVN commit 430384 by pletourn:
Keep the current tab when removing the other tabs via the keyboard
BUG:108274
M +1 -1 konq_viewmgr.cc
--- branches/KDE/3.4/kdebase/konqueror/konq_viewmgr.cc #430383:430384
@@ -635,7 +635,7 @@
for ( it.toFirst(); it != 0L; ++it )
{
- if( it.current() != tab)
+ if( it.current() != currentFrame )
removeTab(it.current());
}
*** Bug 98607 has been marked as a duplicate of this bug. *** In KDE 3.5.8 ( Kubuntu 7.10 ) i have the same bug! I've checked kdebase/konqueror/konq_viewmgr.cc, the "if( it.current() != currentFrame )" is present there, but i can commit the same bug! To reproduce it open three tabs, for example http://bugs.winehq.org/show_bug.cgi?id=10147 http://www.overclockers.ru/hardnews/27628.shtml and http://www.overclockers.ru/hardnews/27627.shtml then pick the first one (bugs.winehq.org) and press a hotkey to close other tabs. The rightmost tab will remain open. The main difference between what i can see and the bug 108274 is that it appears only with certain pages opened in tabs. I have flash player and mplayer plugins loaded. |