From ef845f9a1c33ab94b5e3dfb284b7be89154343bd Mon Sep 17 00:00:00 2001 From: codestation Date: Wed, 25 Dec 2013 00:51:19 -0430 Subject: [PATCH] Adjust the item height on the backup manager so the text doesn't get cut on OS X. --- src/forms/backupmanagerform.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/forms/backupmanagerform.cpp b/src/forms/backupmanagerform.cpp index dbceea9..31c4008 100644 --- a/src/forms/backupmanagerform.cpp +++ b/src/forms/backupmanagerform.cpp @@ -190,7 +190,7 @@ void BackupManagerForm::loadBackupListing(int index) item->setItemInfo(game_name, size); item->setItemIcon(QDir(parent_path).absoluteFilePath(sys_dir ? "icon0.png" : "ICON0.PNG"), img_width, ohfi == VITA_OHFI_PSMAPP); item->setDirectory(obj->path + QDir::separator() + meta->name); - item->resize(646, 70); + item->resize(646, 75); item_list << item; meta = meta->next_metadata; @@ -206,7 +206,7 @@ void BackupManagerForm::loadBackupListing(int index) for(it = item_list.begin(), row = 0; it != item_list.end(); ++it, ++row) { (*it)->row = row; ui->tableWidget->setCellWidget(row, 0, *it); - vert_header->resizeSection(row, 70); + vert_header->resizeSection(row, 75); } vert_header->setUpdatesEnabled(true);