From af9f04b975f3f97aaf66b6ef2c72f4c2bcb910bf Mon Sep 17 00:00:00 2001 From: kichik Date: Thu, 6 Mar 2008 17:32:54 +0000 Subject: [PATCH] fixed bug #1908732 - nsDialogs - OnClick support for static controls not working git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5569 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/nsDialogs/nsDialogs.nsh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Contrib/nsDialogs/nsDialogs.nsh b/Contrib/nsDialogs/nsDialogs.nsh index 80cf2258..ab114891 100644 --- a/Contrib/nsDialogs/nsDialogs.nsh +++ b/Contrib/nsDialogs/nsDialogs.nsh @@ -182,15 +182,15 @@ Header file for creating custom installer pages with nsDialogs !define __NSD_VLine_EXSTYLE ${WS_EX_TRANSPARENT} !define __NSD_Label_CLASS STATIC -!define __NSD_Label_STYLE ${DEFAULT_STYLES} +!define __NSD_Label_STYLE ${DEFAULT_STYLES}|${SS_NOTIFY} !define __NSD_Label_EXSTYLE ${WS_EX_TRANSPARENT} !define __NSD_Icon_CLASS STATIC -!define __NSD_Icon_STYLE ${DEFAULT_STYLES}|${SS_ICON} +!define __NSD_Icon_STYLE ${DEFAULT_STYLES}|${SS_ICON}|${SS_NOTIFY} !define __NSD_Icon_EXSTYLE 0 !define __NSD_Bitmap_CLASS STATIC -!define __NSD_Bitmap_STYLE ${DEFAULT_STYLES}|${SS_BITMAP} +!define __NSD_Bitmap_STYLE ${DEFAULT_STYLES}|${SS_BITMAP}|${SS_NOTIFY} !define __NSD_Bitmap_EXSTYLE 0 !define __NSD_BrowseButton_CLASS BUTTON