From 095f953847e6cebd10e06a2a431bd025037f7909 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Fri, 17 Sep 2021 17:16:19 -0600 Subject: [PATCH] kcmkwin/kwinscripts: Hide help button There is no help for this KCM, so don't show the Help button. BUG: 442460 FIXED-IN: 5.23 --- src/kcmkwin/kwinscripts/module.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/kcmkwin/kwinscripts/module.cpp b/src/kcmkwin/kwinscripts/module.cpp index 35cc0ef10b..f704fc3565 100644 --- a/src/kcmkwin/kwinscripts/module.cpp +++ b/src/kcmkwin/kwinscripts/module.cpp @@ -44,6 +44,9 @@ Module::Module(QWidget *parent, const QVariantList &args) : about->addAuthor(i18n("Tamás Krutki")); setAboutData(about); + // Hide the help button, because there is no help + setButtons(Apply | Default); + ui->setupUi(this); ui->messageWidget->hide();