From dcfa6b97e3229c3398695f815708a72f029f93fb Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Fri, 14 Aug 2015 12:01:28 +0200 Subject: [PATCH] Account Settings: add more margin on the overall text Attempt to fix https://github.com/owncloud/client/issues/3584#issuecomment-131009787 --- src/gui/folderstatusdelegate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/folderstatusdelegate.cpp b/src/gui/folderstatusdelegate.cpp index 698a378ea..b1b787e1a 100644 --- a/src/gui/folderstatusdelegate.cpp +++ b/src/gui/folderstatusdelegate.cpp @@ -285,7 +285,7 @@ void FolderStatusDelegate::paint(QPainter *painter, const QStyleOptionViewItem & pBRect.setTop( h ); pBRect.setLeft( nextToIcon ); pBRect.setHeight(barHeight); - pBRect.setWidth( overallWidth - progressTextWidth - margin ); + pBRect.setWidth( overallWidth - progressTextWidth - 2 * margin ); QStyleOptionProgressBarV2 pBarOpt; -- 2.30.2