From: Rafael Fernández López Date: Mon, 17 Sep 2007 04:50:47 +0000 (+0000) Subject: Categories titles and icons are shown at the same distance between them on LTR and... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/1b211758c7e6e8400d2e84d84c936cb1685c22a2 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 --- diff --git a/src/dolphincategorydrawer.cpp b/src/dolphincategorydrawer.cpp index 099167b61..aff03dab7 100644 --- a/src/dolphincategorydrawer.cpp +++ b/src/dolphincategorydrawer.cpp @@ -264,12 +264,16 @@ void DolphinCategoryDrawer::drawCategory(const QModelIndex &index, int sortRole, if (paintIcon) { 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) { opt.rect.setLeft(opt.rect.left() + iconSize + (iconSize / 4)); } + else + { + opt.rect.setRight(opt.rect.right() + (iconSize / 4)); + } } if (paintText) {