From 85c0c8f457fae1c9af02338da616c8b871a493fb Mon Sep 17 00:00:00 2001 From: kichik Date: Sun, 1 Sep 2002 19:31:35 +0000 Subject: [PATCH] Added DT_NOPREFIX (http://forums.winamp.com/showthread.php?s=&postid=609487#post609487) git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@853 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/exehead/bgbg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/exehead/bgbg.c b/Source/exehead/bgbg.c index c3ca6eb0..26a454a1 100644 --- a/Source/exehead/bgbg.c +++ b/Source/exehead/bgbg.c @@ -49,7 +49,7 @@ static LRESULT CALLBACK BG_WndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM l SetBkMode(hdc,TRANSPARENT); SetTextColor(hdc,m_textcolor); oldFont = SelectObject(hdc,newFont); - DrawText(hdc,buf,-1,&r,DT_TOP|DT_LEFT|DT_SINGLELINE); + DrawText(hdc,buf,-1,&r,DT_TOP|DT_LEFT|DT_SINGLELINE|DT_NOPREFIX); SelectObject(hdc,oldFont); DeleteObject(newFont); }