[Konversation-devel] [Bug 117611] Moving tabs from terminating position can not move opposite direction
Eike Hein
sho at eikehein.com
Mon Dec 5 22:11:45 CET 2005
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=117611
sho eikehein com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From sho eikehein com 2005-12-05 22:11 -------
SVN commit 485833 by hein:
Update tab actions after moving a tab, so the left-most and
right-most tabs can be moved forth and back properly.
BUG:117611
M +2 -0 konversationmainwindow.cpp
--- trunk/extragear/network/konversation/src/konversationmainwindow.cpp #485832:485833
@ -2106,6 +2106,7 @
if(index)
{
getViewContainer()->moveTab(index, index - 1);
+ updateTabMoveActions(index - 1);
}
updateSwitchTabAction();
@ -2128,6 +2129,7 @
if(index < (getViewContainer()->count() - 1))
{
getViewContainer()->moveTab(index, index + 1);
+ updateTabMoveActions(index + 1);
}
updateSwitchTabAction();
More information about the Konversation-devel
mailing list