Categories titles and icons are shown at the same distance between them on LTR and RTL languages

svn path=/trunk/KDE/kdebase/apps/; revision=713321
This commit is contained in:
Rafael Fernández López 2007-09-17 04:50:47 +00:00
parent b7e3077a9d
commit 1b211758c7

View file

@ -264,12 +264,16 @@ void DolphinCategoryDrawer::drawCategory(const QModelIndex &index, int sortRole,
if (paintIcon) { if (paintIcon) {
painter->drawPixmap(QRect(option.direction == Qt::LeftToRight ? opt.rect.left() painter->drawPixmap(QRect(option.direction == Qt::LeftToRight ? opt.rect.left()
: opt.rect.right() - iconSize, opt.rect.top(), iconSize, iconSize), icon); : opt.rect.right() - iconSize + (iconSize / 4), opt.rect.top(), iconSize, iconSize), icon);
if (option.direction == Qt::LeftToRight) if (option.direction == Qt::LeftToRight)
{ {
opt.rect.setLeft(opt.rect.left() + iconSize + (iconSize / 4)); opt.rect.setLeft(opt.rect.left() + iconSize + (iconSize / 4));
} }
else
{
opt.rect.setRight(opt.rect.right() + (iconSize / 4));
}
} }
if (paintText) { if (paintText) {