From 6638d74687ed03869c312d12dfc95f6672d4fffb Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Thu, 16 Feb 2012 22:31:01 -0500 Subject: [PATCH] Fix typo, left->right is small->big... --- src/AccountDelegate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AccountDelegate.cpp b/src/AccountDelegate.cpp index 906cb7c03..388f44895 100644 --- a/src/AccountDelegate.cpp +++ b/src/AccountDelegate.cpp @@ -389,7 +389,7 @@ AccountDelegate::drawAccountList( QPainter* painter, QStyleOptionViewItemV4& opt current += textHeight + PADDING/2; - leftOfAccounts = qMax( leftOfAccounts, textTopLeft.x() ); + leftOfAccounts = qMin( leftOfAccounts, textTopLeft.x() ); } return leftOfAccounts;