CVS commit by goutte: Add the character to the tooltip, in the current font and bigger (at least compared to the default size of the dialog). (If I remember well, this might be a reported bug, however I have not the bug number at hand.) M +1 -1 kcharselect.cpp 1.38 --- kdelibs/kdeui/kcharselect.cpp #1.37:1.38 @@ -352,5 +352,5 @@ void KCharSelectTable::setToolTips() QString s; s.sprintf( "%04X", uint( uni ) ); - QToolTip::add(this, r, i18n( "Character","Unicode code point: U+%1
(In decimal: %2)
(Character: %3)
" ).arg( s ).arg( uni ).arg( QChar( uni ) ) ); + QToolTip::add(this, r, i18n( "Character","%2
Unicode code point: U+%3
(In decimal: %4)
(Character: %5)
" ).arg( vFont ).arg( QChar( uni ) ).arg( s ).arg( uni ).arg( QChar( uni ) ) ); } }