diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-04-23 18:36:39 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-04-23 18:36:39 +0000 |
commit | f7fbfab51d6ee519c8e0fb19c0215dabfde8771c (patch) | |
tree | bc637dbd64b18b3408b89f6f5be6372cfbfc6f89 /plugins/UserInfoEx/src | |
parent | 8994046b8cd70f9672edf62d118ef066714c005f (diff) |
show big icon (by unsane)
git-svn-id: http://svn.miranda-ng.org/main/trunk@9063 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx/src')
-rw-r--r-- | plugins/UserInfoEx/src/dlg_propsheet.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/UserInfoEx/src/dlg_propsheet.cpp b/plugins/UserInfoEx/src/dlg_propsheet.cpp index 567a4afc2d..05270fb469 100644 --- a/plugins/UserInfoEx/src/dlg_propsheet.cpp +++ b/plugins/UserInfoEx/src/dlg_propsheet.cpp @@ -725,7 +725,8 @@ static INT_PTR CALLBACK DlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lPar //
// set icons
//
- SendMessage(hDlg, WM_SETICON, ICON_BIG, (LPARAM)Skin_GetIcon(ICO_COMMON_MAIN));
+ SendMessage(hDlg, WM_SETICON, ICON_SMALL, (LPARAM)Skin_GetIcon(ICO_COMMON_MAIN));
+ SendMessage(hDlg, WM_SETICON, ICON_BIG, (LPARAM)Skin_GetIcon(ICO_COMMON_MAIN, 32));
DlgProc(hDlg, HM_RELOADICONS, NULL, NULL);
//
|