diff --git a/src/platform/qt/library/LibraryTree.cpp b/src/platform/qt/library/LibraryTree.cpp index 68a9f31d6..b9b24711a 100644 --- a/src/platform/qt/library/LibraryTree.cpp +++ b/src/platform/qt/library/LibraryTree.cpp @@ -1,4 +1,5 @@ /* Copyright (c) 2014-2017 waddlesplash + * Copyright (c) 2013-2022 Jeffrey Pfau * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this @@ -194,7 +195,7 @@ void LibraryTree::rebuildTree() { i->setText(COL_LOCATION, QDir::toNativeSeparators(item.base)); i->setText(COL_PLATFORM, nicePlatformFormat(item.platform)); i->setFilesize(item.filesize); - i->setTextAlignment(COL_SIZE, Qt::AlignRight); + i->setTextAlignment(COL_SIZE, Qt::AlignTrailing | Qt::AlignVCenter); i->setText(COL_CRC32, QString("%0").arg(item.crc32, 8, 16, QChar('0'))); m_items.insert(item.fullpath, i);