summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2016-12-30 23:14:49 +0300
committerGeorge Hazan <ghazan@miranda.im>2016-12-30 23:14:49 +0300
commit09768fdb0f9de1927ff55292af87714eceefb562 (patch)
treea94b16d0b8750a852f37e13baaf6550158cda0b3 /plugins
parentd740c844823e16dde4811c7582068d18de850a55 (diff)
fixes #661 (Scriver: Cannot send message if "Send Message" button not set in Toolbar)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Scriver/src/msgs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Scriver/src/msgs.cpp b/plugins/Scriver/src/msgs.cpp
index db483297bd..2857737506 100644
--- a/plugins/Scriver/src/msgs.cpp
+++ b/plugins/Scriver/src/msgs.cpp
@@ -429,7 +429,7 @@ int RegisterToolbarIcons(WPARAM, LPARAM)
{
BBButton bbd = {};
bbd.pszModuleName = "SRMM";
- bbd.bbbFlags = BBBF_ISCHATBUTTON | BBBF_ISIMBUTTON | BBBF_CREATEBYID | BBBF_ISRSIDEBUTTON;
+ bbd.bbbFlags = BBBF_ISCHATBUTTON | BBBF_ISIMBUTTON | BBBF_CREATEBYID | BBBF_ISRSIDEBUTTON | BBBF_CANTBEHIDDEN;
bbd.dwButtonID = IDOK;
bbd.dwDefPos = 5;
bbd.hIcon = IcoLib_GetIconHandle("scriver_SEND");