diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2012-10-12 08:49:48 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2012-10-12 08:49:48 +0000 |
commit | 34584d644b602b3ad8020f7cc1eeac6c3b6a3d5e (patch) | |
tree | d6c37cb7a2608e64bf7b1a8b4fd5258b8bb99de1 /plugins/SimpleStatusMsg/src | |
parent | 5ed4fc765e0a505064c49651eb06822ac9b90310 (diff) |
Fixed Toolbar icon (fixes #109)
git-svn-id: http://svn.miranda-ng.org/main/trunk@1881 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SimpleStatusMsg/src')
-rw-r--r-- | plugins/SimpleStatusMsg/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SimpleStatusMsg/src/main.cpp b/plugins/SimpleStatusMsg/src/main.cpp index 35a618008f..a707a0ae66 100644 --- a/plugins/SimpleStatusMsg/src/main.cpp +++ b/plugins/SimpleStatusMsg/src/main.cpp @@ -1595,7 +1595,7 @@ static int AddTopToolbarButton(WPARAM wParam, LPARAM lParam) {
TTBButton ttbb = {0};
ttbb.cbSize = sizeof(ttbb);
- ttbb.hIconHandleUp = GetIconHandle(IDI_CSMSG);
+ ttbb.hIconHandleUp = ttbb.hIconHandleDn = GetIconHandle(IDI_CSMSG);
ttbb.pszService = MS_SIMPLESTATUSMSG_SHOWDIALOGINT;
ttbb.dwFlags = TTBBF_VISIBLE | TTBBF_SHOWTOOLTIP;
ttbb.name = ttbb.pszTooltipUp = LPGEN("Change Status Message");
|