Correct the location of the style patching for the edit control.

diff --git a/windows/dialog.c b/windows/dialog.c
index 5a2db79..449b016 100644
--- a/windows/dialog.c
+++ b/windows/dialog.c
@@ -479,6 +479,12 @@
         {
             template = (LPCSTR)DIALOG_GetControl32( (WORD *)template, &info,
                                                     dlgTemplate->dialogEx );
+            /* Is this it? */
+            if (info.style & WS_BORDER)
+            {
+                info.style &= ~WS_BORDER;
+                info.exStyle |= WS_EX_CLIENTEDGE;
+            }
             hwndCtrl = CreateWindowExW( info.exStyle | WS_EX_NOPARENTNOTIFY,
                                           (LPCWSTR)info.className,
                                           (LPCWSTR)info.windowName,