diff options
-rw-r--r-- | yapp/popwin.cpp | 4 | ||||
-rw-r--r-- | yapp/version.h | 2 |
2 files changed, 3 insertions, 3 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);
}
diff --git a/yapp/version.h b/yapp/version.h index 7ab59c9..327ebcb 100644 --- a/yapp/version.h +++ b/yapp/version.h @@ -4,7 +4,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 3
#define __RELEASE_NUM 0
-#define __BUILD_NUM 1
+#define __BUILD_NUM 2
#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
|