Author: gschneider
Date: Sat Sep 26 21:24:39 2009
New Revision: 43170
URL:
http://svn.reactos.org/svn/reactos?rev=43170&view=rev
Log:
Don't add quick launch icon copies after showing a context menu
See issue #2453 for more details.
Modified:
trunk/reactos/base/shell/explorer/taskbar/quicklaunch.cpp
Modified: trunk/reactos/base/shell/explorer/taskbar/quicklaunch.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/taskba…
==============================================================================
--- trunk/reactos/base/shell/explorer/taskbar/quicklaunch.cpp [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer/taskbar/quicklaunch.cpp [iso-8859-1] Sat Sep 26
21:24:39 2009
@@ -252,9 +252,7 @@
if (entry) { // entry is NULL for desktop switch buttons
HRESULT hr = entry->do_context_menu(_hwnd, screen_pt, _cm_ifs);
- if (SUCCEEDED(hr))
- AddShortcuts(); //refresh();
- else
+ if (!SUCCEEDED(hr))
CHECKERROR(hr);
} else
goto def;