From badcd9dbc731ee07918d19de5d834eb99d563e65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 14 Jul 2008 17:33:10 +0000 Subject: [PATCH] * Popup menu is now sticky - this should probably be the default of all menus when "sticky menus" is selected in the menu preferences (just in case we still have that setting...). Oh, this also fixes bug #2315. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26411 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/workspaces/Workspaces.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/workspaces/Workspaces.cpp b/src/apps/workspaces/Workspaces.cpp index df2d6af154..140438a50e 100644 --- a/src/apps/workspaces/Workspaces.cpp +++ b/src/apps/workspaces/Workspaces.cpp @@ -449,7 +449,7 @@ WorkspacesView::MouseDown(BPoint where) changeItem->SetTarget(this); ConvertToScreen(&where); - menu->Go(where, true, false, true); + menu->Go(where, true, true, true); }