diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-05-03 17:41:15 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-05-03 17:41:15 +0000 |
commit | 8054c771852aec548f4d648cafafc8fd6c1bf08e (patch) | |
tree | 6e4315c70163db6e9afaead638dfe26cbed0868e /plugins/Clist_nicer/src/clui.cpp | |
parent | d5a062a77c2da82b8f99aefcbaaa2ac131266ee5 (diff) |
- Fixed drawing flat/themed toolbar buttons in clist_nicer (patch by slotwin) (fixes #655)
git-svn-id: http://svn.miranda-ng.org/main/trunk@9117 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_nicer/src/clui.cpp')
-rw-r--r-- | plugins/Clist_nicer/src/clui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_nicer/src/clui.cpp b/plugins/Clist_nicer/src/clui.cpp index bc1ceab1e5..216ed57ce7 100644 --- a/plugins/Clist_nicer/src/clui.cpp +++ b/plugins/Clist_nicer/src/clui.cpp @@ -798,8 +798,8 @@ LRESULT CALLBACK ContactListWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM l SetWindowLongPtr(hwnd, GWL_STYLE, GetWindowLongPtr(hwnd, GWL_STYLE) | WS_CLIPCHILDREN);
if (!cfg::dat.bFirstRun)
ConfigureEventArea(hwnd);
- CluiProtocolStatusChanged(0, 0);
ConfigureCLUIGeometry(0);
+ CluiProtocolStatusChanged(0, 0);
for (i = ID_STATUS_OFFLINE; i <= ID_STATUS_OUTTOLUNCH; i++)
statusNames[i-ID_STATUS_OFFLINE] = pcli->pfnGetStatusModeDescription(i, 0);
|