This is a multi-part message in MIME format. --------------000003060407050104020802 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Completion box didn't inherit font settings from line edit. If somebody use, say, smaller font in a combo box, completion box have default app font, what looks weird. OK to also backport to 3.4? -- regards / pozdrawiam, Jaroslaw Staniek / OpenOffice Polska / Kexi Team http://www.openoffice.com.pl | http://www.kexi-project.org KDElibs/Windows: http://wiki.kde.org/tiki-index.php?page=KDElibs+for+win32 --------------000003060407050104020802 Content-Type: text/plain; name="kdeui.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="kdeui.patch" Index: klineedit.cpp =================================================================== --- klineedit.cpp (revision 427646) +++ klineedit.cpp (working copy) @@ -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; } --------------000003060407050104020802--