diff options
Diffstat (limited to 'yapp/popwin.cpp')
-rw-r--r-- | yapp/popwin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yapp/popwin.cpp b/yapp/popwin.cpp index 219e302..2647d0b 100644 --- a/yapp/popwin.cpp +++ b/yapp/popwin.cpp @@ -426,8 +426,8 @@ LRESULT CALLBACK PopupWindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPa adr.hContact = pd->lchContact;
adr.hTargetDC = ps.hdc;
adr.rcDraw = avr;
- adr.dwFlags = (pwd->is_round ? AVDRQ_ROUNDEDCORNER : 0);
- adr.radius = (pwd->av_is_round ? 5 : 0);
+ adr.dwFlags = (pwd->av_is_round ? AVDRQ_ROUNDEDCORNER : 0);
+ adr.radius = 5; //(pwd->av_is_round ? 5 : 0);
CallService(MS_AV_DRAWAVATAR, 0, (LPARAM)&adr);
}
|