From 47e2cd382b378e8f794422d32c4e588576dbe865 Mon Sep 17 00:00:00 2001 From: Albert Liu <45282415+ggrtk@users.noreply.github.com> Date: Thu, 4 Mar 2021 15:37:27 -0800 Subject: [PATCH] Qt/MemoryCardEditor: Increase default filename column size --- src/duckstation-qt/memorycardeditordialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/duckstation-qt/memorycardeditordialog.cpp b/src/duckstation-qt/memorycardeditordialog.cpp index be2676ee4..f0ddb65d3 100644 --- a/src/duckstation-qt/memorycardeditordialog.cpp +++ b/src/duckstation-qt/memorycardeditordialog.cpp @@ -53,8 +53,8 @@ bool MemoryCardEditorDialog::setCardB(const QString& path) void MemoryCardEditorDialog::resizeEvent(QResizeEvent* ev) { - QtUtils::ResizeColumnsForTableView(m_card_a.table, {32, -1, 100, 45}); - QtUtils::ResizeColumnsForTableView(m_card_b.table, {32, -1, 100, 45}); + QtUtils::ResizeColumnsForTableView(m_card_a.table, {32, -1, 155, 45}); + QtUtils::ResizeColumnsForTableView(m_card_b.table, {32, -1, 155, 45}); } void MemoryCardEditorDialog::closeEvent(QCloseEvent* ev)