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/TabSRMM/src/modplus.cpp | |
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/TabSRMM/src/modplus.cpp')
-rw-r--r-- | plugins/TabSRMM/src/modplus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/modplus.cpp b/plugins/TabSRMM/src/modplus.cpp index 4acddabb73..d58e9a3062 100644 --- a/plugins/TabSRMM/src/modplus.cpp +++ b/plugins/TabSRMM/src/modplus.cpp @@ -54,7 +54,7 @@ static int RegisterCustomButton(WPARAM, LPARAM) BBButton bbd = { 0 };
bbd.cbSize = sizeof(BBButton);
- bbd.bbbFlags = BBBF_ISIMBUTTON | BBBF_ISLSIDEBUTTON | BBBF_ISPUSHBUTTON;
+ bbd.bbbFlags = BBBF_ISIMBUTTON | BBBF_ISPUSHBUTTON;
bbd.dwButtonID = 1;
bbd.dwDefPos = 200;
bbd.hIcon = PluginConfig.g_buttonBarIconHandles[3];
|