Fix incorrect positions and heights in open/save dialogs when nonstandard font sizes are in use

(cherry picked from commit c5463fddb1)
v3.5.13-sru
Timothy Pearson 11 years ago committed by Slávek Banko
parent a40d90b982
commit e80d466d7e

@ -634,8 +634,8 @@ void KIconViewItem::calcRect( const TQString& text_ )
}
if ( ( itemIconRect.height() <= 20 ) && ( itemTextRect.height() < itemIconRect.height() ) ) {
d->realTextHeight = itemTextRect.height();
itemTextRect.setHeight( itemIconRect.height() - 2 );
itemTextRect.setY( itemIconRect.y() );
itemTextRect.setHeight( itemIconRect.height() - 2 );
}
}

@ -214,10 +214,12 @@ void KURLBarItem::paint( TQPainter *p )
p->drawPixmap( margin, yPos, *pm );
if ( !text().isEmpty() ) {
TQFontMetrics fm = p->fontMetrics();
if ( pm->height() < fm.height() )
if ( pm->height() < fm.height() ) {
yPos = fm.ascent() + fm.leading()/2;
else
yPos = pm->height()/2 - fm.height()/2 + fm.ascent();
}
else {
yPos = height(box)/2 - fm.height()/2 + fm.ascent() - margin;
}
yPos += margin;
int stringWidth = box->width() - pm->width() - 2 - (margin * 2);

Loading…
Cancel
Save