SVN commit 433986 by staniek: let completion box inherit font settings (reviewed) M +3 -1 klineedit.cpp --- trunk/KDE/kdelibs/kdeui/klineedit.cpp #433985:433986 @@ -1219,8 +1219,10 @@ KCompletionBox * KLineEdit::completionBox( bool create ) { - if ( create && !d->completionBox ) + if ( create && !d->completionBox ) { setCompletionBox( new KCompletionBox( this, "completion box" ) ); + d->completionBox->setFont(font()); + } return d->completionBox; }