From 6dfa5325d00ddb4802bd452322d86c689f789596 Mon Sep 17 00:00:00 2001 From: Giannis Adamopoulos Date: Tue, 28 Oct 2014 14:31:19 +0000 Subject: [PATCH] [RSHELL] - Actually give focus to the start menu when CMenuDeskBar::Popup is called - Fixes opening and navigating the start menu with the keyboard svn path=/branches/shell-experiments/; revision=65071 --- base/shell/rshell/CMenuDeskBar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/shell/rshell/CMenuDeskBar.cpp b/base/shell/rshell/CMenuDeskBar.cpp index 1ddc0fc7a73..ad65fc46fa5 100644 --- a/base/shell/rshell/CMenuDeskBar.cpp +++ b/base/shell/rshell/CMenuDeskBar.cpp @@ -381,7 +381,7 @@ HRESULT STDMETHODCALLTYPE CMenuDeskBar::Popup(POINTL *ppt, RECTL *prcExclude, MP y = rcWorkArea.bottom - cy; } - this->SetWindowPos(HWND_TOPMOST, x, y, cx, cy, SWP_SHOWWINDOW | SWP_NOACTIVATE); + this->SetWindowPos(HWND_TOPMOST, x, y, cx, cy, SWP_SHOWWINDOW); m_ShowFlags = dwFlags; m_Shown = true;