mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 21:46:03 +03:00
Status dialog: Use correct font metrics
This avoids cutting charcters such as 'y'.
This commit is contained in:
parent
94f8c39a9e
commit
0d06fe764a
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ void FolderViewDelegate::paint(QPainter *painter, const QStyleOptionViewItem &op
|
|||
aliasRect.setLeft(iconRect.right()+margin);
|
||||
|
||||
aliasRect.setTop(aliasRect.top() + aliasFm.height()/2 );
|
||||
aliasRect.setBottom(aliasRect.top()+subFm.height());
|
||||
aliasRect.setBottom(aliasRect.top()+aliasFm.height());
|
||||
|
||||
// local directory box
|
||||
QRect localPathRect = aliasRect;
|
||||
|
|
Loading…
Reference in a new issue