Version: (using KDE KDE 3.5.4) Installed from: Ubuntu Packages OS: Linux In the new channel list in Konversation 1.0 the channel #c&c is shown as '#cc' where the 2nd c is underlined, so it treats the ampersand as a shortcut like in a normal menu.
SVN commit 581261 by hein: Don't accelfy ampersands in treelist labels. BUG:133612 M +1 -0 ChangeLog M +1 -1 src/viewtreeitem.cpp --- trunk/extragear/network/konversation/ChangeLog #581260:581261 @@ -1,6 +1,7 @@ Changes since 1.0: - Properly update "Switch to" tab context sub-menu on tab switch. - Fix dcop irc::setBack. +- Don't treat & in tab names as accels in treelist items. ------------------------------------------------------------------------------- --- trunk/extragear/network/konversation/src/viewtreeitem.cpp #581260:581261 @@ -468,7 +468,7 @@ thePainter.setPen(textColor); thePainter.setFont(listView()->font()); - thePainter.drawText(xText, 0, textWidth, height(), Qt::AlignAuto | Qt::AlignVCenter | Qt::ShowPrefix, theText); + thePainter.drawText(xText, 0, textWidth, height(), Qt::AlignAuto | Qt::AlignVCenter, theText); } } else