diff options
author | George Hazan <ghazan@miranda.im> | 2016-11-29 13:25:28 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2016-11-29 13:25:28 +0300 |
commit | 6dfdffd3161a716304b74c1fc5c386c9601cc69e (patch) | |
tree | ff7f53d8b643260676bbc6e69efc563d489ed0b5 /plugins/QuickReplies/src | |
parent | 4e5cf5ee914732ae30e261f08b270f07a69630f4 (diff) |
- BBBF_ISLSIDEBUTTON flag removed (set by default);
- m_bLSided removed, because it's mutually exclusive with m_bRSided
Diffstat (limited to 'plugins/QuickReplies/src')
-rw-r--r-- | plugins/QuickReplies/src/events.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/QuickReplies/src/events.cpp b/plugins/QuickReplies/src/events.cpp index fb26bef2a6..1839bc891a 100644 --- a/plugins/QuickReplies/src/events.cpp +++ b/plugins/QuickReplies/src/events.cpp @@ -57,7 +57,7 @@ int OnModulesLoaded(WPARAM, LPARAM) BBButton bbd = {0};
bbd.cbSize = sizeof(BBButton);
- bbd.bbbFlags = BBBF_ISIMBUTTON | BBBF_ISCHATBUTTON | BBBF_ISLSIDEBUTTON;
+ bbd.bbbFlags = BBBF_ISIMBUTTON | BBBF_ISCHATBUTTON;
bbd.pszModuleName = buttonName;
bbd.pwszTooltip = LPGENW("Quick Replies\r\nLeft button - open menu\r\nRight button - options page");
bbd.hIcon = icon.hIcolib;
|