From 6eff561234be7300b65eaef1112f98a08c009946 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 24 May 2023 23:53:18 -0400 Subject: [PATCH] useractions: Add separator above the "Close" action This matches other places in Plasma e.g. the task manager, where there is a similarly placed separator. --- src/useractions.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/useractions.cpp b/src/useractions.cpp index 4cec797cb5..b019c31958 100644 --- a/src/useractions.cpp +++ b/src/useractions.cpp @@ -331,6 +331,8 @@ void UserActionsMenu::init() overflowAction->setText(i18n("&More Actions")); overflowAction->setIcon(QIcon::fromTheme(QStringLiteral("overflow-menu"))); + m_menu->addSeparator(); + m_closeOperation = m_menu->addAction(i18n("&Close")); m_closeOperation->setIcon(QIcon::fromTheme(QStringLiteral("window-close"))); setShortcut(m_closeOperation, QStringLiteral("Window Close"));