diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-04-23 18:56:35 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-04-23 18:56:35 +0000 |
commit | bb609a68123547295df2c07fdb033a2be6b8ac22 (patch) | |
tree | 3a2b47eec51c25164b2400507dd6727a38808dc3 /plugins/Dropbox | |
parent | f7fbfab51d6ee519c8e0fb19c0215dabfde8771c (diff) |
Dropbox - fix for offline contacts menu item
git-svn-id: http://svn.miranda-ng.org/main/trunk@9064 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox')
-rw-r--r-- | plugins/Dropbox/src/dropbox_menus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dropbox/src/dropbox_menus.cpp b/plugins/Dropbox/src/dropbox_menus.cpp index d01c1e1f88..05efbb8947 100644 --- a/plugins/Dropbox/src/dropbox_menus.cpp +++ b/plugins/Dropbox/src/dropbox_menus.cpp @@ -27,7 +27,7 @@ void CDropbox::InitializeMenus() {
CLISTMENUITEM mi = { 0 };
mi.cbSize = sizeof(CLISTMENUITEM);
- mi.flags = CMIF_TCHAR | CMIF_NOTOFFLINE;
+ mi.flags = CMIF_TCHAR;
mi.pszService = MODULE"/SendFilesToDropbox";
mi.ptszName = LPGENT("Send files to Dropbox");
|