diff --git a/Contrib/BgImage/BgImage.cpp b/Contrib/BgImage/BgImage.cpp index 5b1a657e..bf99a209 100644 --- a/Contrib/BgImage/BgImage.cpp +++ b/Contrib/BgImage/BgImage.cpp @@ -1,3 +1,7 @@ +/* I modified the window styles to eliminate the annoying title bar. + 8th February 2003 Ximon Eighteen aka Sunjammer */ + + #include #include #include "../exdll/exdll.h" @@ -39,10 +43,10 @@ extern "C" void __declspec(dllexport) Init(HWND hwndParent, int string_size, cha } hWndImage = CreateWindowEx( - WS_EX_TOOLWINDOW, + WS_EX_TOOLWINDOW|WS_EX_LEFT|WS_EX_LTRREADING|WS_EX_RIGHTSCROLLBAR, "NSISBGImage", 0, - WS_VISIBLE, + WS_POPUPWINDOW|WS_VISIBLE|WS_CLIPSIBLINGS|WS_OVERLAPPED, (GetSystemMetrics(SM_CXSCREEN)-x)/2, (GetSystemMetrics(SM_CYSCREEN)-y)/2, x, diff --git a/Contrib/BgImage/BgImage.txt b/Contrib/BgImage/BgImage.txt index e959ffbd..4b5b9933 100644 --- a/Contrib/BgImage/BgImage.txt +++ b/Contrib/BgImage/BgImage.txt @@ -32,4 +32,6 @@ Sound [/WAIT] path_to_wav Credits ~~~~~~~ -Coded by Amir Szekely, aka KiCHiK \ No newline at end of file +Coded by Amir Szekely, aka KiCHiK +Modified by Ximon Eighteen, aka Sunjammer (08Feb2003) - Removed the window title bar + \ No newline at end of file diff --git a/Plugins/BgImage.dll b/Plugins/BgImage.dll index 8970e098..81d6f48a 100644 Binary files a/Plugins/BgImage.dll and b/Plugins/BgImage.dll differ