From edcf4d53ef64f3de4a8abd517f00d807eea0417d Mon Sep 17 00:00:00 2001 From: Jeremy Whiting Date: Thu, 2 Oct 2014 09:43:29 -0600 Subject: [PATCH] Context menu: Add "Keep Above Others" icon opposite of "Keep Below Others" REVIEW:120465 (cherry picked from commit f8defc4c8fe79f8805e44f2d71b038c3cad4e77a) --- useractions.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/useractions.cpp b/useractions.cpp index 980a3c548a..ad7c511f03 100755 --- a/useractions.cpp +++ b/useractions.cpp @@ -266,6 +266,7 @@ void UserActionsMenu::init() m_resizeOperation->setData(Options::ResizeOp); m_keepAboveOperation = advancedMenu->addAction(i18n("Keep &Above Others")); + m_keepAboveOperation->setIcon(QIcon::fromTheme(QStringLiteral("go-up"))); setShortcut(m_keepAboveOperation, QStringLiteral("Window Above Other Windows")); m_keepAboveOperation->setCheckable(true); m_keepAboveOperation->setData(Options::KeepAboveOp);