diff options
author | George Hazan <george.hazan@gmail.com> | 2013-04-06 21:23:14 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-04-06 21:23:14 +0000 |
commit | 115b6049af388fffa1f570b786696443b2d5a7a9 (patch) | |
tree | efd4d458ca3bd6a32fc5ede54f2a55b9e05ef37c /plugins | |
parent | 37f0dfdfac4dc0af578769b02e29efb9926415bb (diff) |
minor fix for popup menu icon
git-svn-id: http://svn.miranda-ng.org/main/trunk@4352 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/MenuItemEx/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MenuItemEx/src/main.cpp b/plugins/MenuItemEx/src/main.cpp index 4cf3414006..9f9fc15a5e 100644 --- a/plugins/MenuItemEx/src/main.cpp +++ b/plugins/MenuItemEx/src/main.cpp @@ -523,7 +523,7 @@ void ModifyInvisSet(int mode,BOOL alpha) CLISTMENUITEM mi = { sizeof(mi) };
mi.flags = CMIM_ICON;
mi.hIcon = (mode) ? hIcon[2] : (alpha ? hIcon[4] : LoadSkinnedIcon(SKINICON_OTHER_SMALLDOT));
- Menu_ModifyItem(hmenuVis, &mi);
+ Menu_ModifyItem(hmenuOff, &mi);
}
void ModifyCopyID(HANDLE hContact, BOOL bShowID, BOOL bTrimID)
|