diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-05-08 15:10:05 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-05-08 15:10:05 +0000 |
commit | 58b7288043d709f7a5b762ac9699877f9477bdc2 (patch) | |
tree | 54269d5832fd9d65a24a6afe7fdaa397cbcacb76 /yapp/popwin.cpp | |
parent | 521491c9ae96e5f6eaed764d0cdd8bba465830ba (diff) |
bugfix: round corner options confused
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@169 4f64403b-2f21-0410-a795-97e2b3489a10
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);
}
|