Index: libs/libmythui/mythmainwindow.cpp
===================================================================
--- libs/libmythui/mythmainwindow.cpp	(revision 16116)
+++ libs/libmythui/mythmainwindow.cpp	(working copy)
@@ -586,7 +586,21 @@
     flags |= WResizeNoErase;
 #endif
 
+#if defined(USE_OPENGL_PAINTER) && defined(_WIN32)
+    if (!d->does_fill_screen) {
+        flags |= WStyle_Title | WStyle_SysMenu | WStyle_Minimize;
+    }
+    //QGLWidget::reparent is not implemented in QT3/Win32
+    setCaption("MythTV Frontend");
+    clearWFlags(getWFlags());
+    setWFlags(flags);
+    clearWState(WState_Created);
+    create(winId(), true, false);
+    clearWState(WState_Visible);
+    move(d->xbase, d->ybase);
+#else
     reparent(parentWidget(), flags, pos());
+#endif
 
     /* FIXME these two lines should go away */
     setFont(gContext->GetMediumFont());
