Remove pointless widget

This appears in the main view and intercepts keys whilst doing nothing

BUG: 434910
wilder-5.22
David Edmundson 5 years ago
parent cd68df165a
commit 3f76ff9207
  1. 3
      klipper/configdialog.cpp

@ -272,8 +272,7 @@ ConfigDialog::ConfigDialog(QWidget *parent, KConfigSkeleton *skeleton, const Kli
addPage(m_generalPage, i18nc("General Config", "General"), QStringLiteral("klipper"), i18n("General Configuration"));
addPage(m_actionsPage, i18nc("Actions Config", "Actions"), QStringLiteral("system-run"), i18n("Actions Configuration"));
QWidget *w = new QWidget(this);
m_shortcutsWidget = new KShortcutsEditor(collection, w, KShortcutsEditor::GlobalAction);
m_shortcutsWidget = new KShortcutsEditor(collection, this, KShortcutsEditor::GlobalAction);
addPage(m_shortcutsWidget, i18nc("Shortcuts Config", "Shortcuts"), QStringLiteral("preferences-desktop-keyboard"), i18n("Shortcuts Configuration"));
const KConfigGroup grp = KSharedConfig::openConfig()->group("ConfigDialog");

Loading…
Cancel
Save