From 2b53221b64d8c1db32cbbdb001405d752527ef31 Mon Sep 17 00:00:00 2001 From: kichik Date: Thu, 10 Mar 2005 18:53:34 +0000 Subject: [PATCH] fixed bug #1159700 - SetFont doesn't work well with RTL on Windows 9x git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3919 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/DialogTemplate.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/DialogTemplate.cpp b/Source/DialogTemplate.cpp index c80c3052..b054a729 100644 --- a/Source/DialogTemplate.cpp +++ b/Source/DialogTemplate.cpp @@ -282,12 +282,10 @@ void CDialogTemplate::SetFont(char* szFaceName, WORD wFontSize) { if (strcmp(szFaceName, "MS Shell Dlg")) { // not MS Shell Dlg m_dwStyle &= ~DS_SHELLFONT; - m_bExtended = false; } else { // MS Shell Dlg m_dwStyle |= DS_SHELLFONT; - m_bExtended = true; } m_dwStyle |= DS_SETFONT; if (m_szFont) delete [] m_szFont;