From 0218006e1b8dfacbc497df3bdcdb8774551ffda6 Mon Sep 17 00:00:00 2001 From: Albert Liu <45282415+ggrtk@users.noreply.github.com> Date: Thu, 4 Mar 2021 16:55:44 -0800 Subject: [PATCH] Qt/MemoryCardEditor: Remove unused context help button --- src/duckstation-qt/memorycardeditordialog.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/duckstation-qt/memorycardeditordialog.cpp b/src/duckstation-qt/memorycardeditordialog.cpp index 4c8fe8fe7..155c0a68f 100644 --- a/src/duckstation-qt/memorycardeditordialog.cpp +++ b/src/duckstation-qt/memorycardeditordialog.cpp @@ -15,6 +15,8 @@ static constexpr char MEMORY_CARD_IMPORT_FILTER[] = MemoryCardEditorDialog::MemoryCardEditorDialog(QWidget* parent) : QDialog(parent) { m_ui.setupUi(this); + setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); + m_card_a.path_cb = m_ui.cardAPath; m_card_a.table = m_ui.cardA; m_card_a.blocks_free_label = m_ui.cardAUsage;