The playback window should have no title bar. These days users can handle such a window quite well. It should be like a WinDVD playback window, as borderless as possible.
--- VideoRender.cpp (Revision 206) +++ VideoRender.cpp (Arbeitskopie) @@ -20,6 +20,7 @@
#include "VideoRender.h" #include <SparkTools.h> +#include <libintl.h>
#include "../Config.h" #include "../MythPlayerDefines.h" @@ -506,7 +507,7 @@ // videoFlags|=SDL_FULLSCREEN; }else { -// videoFlags|=SDL_NOFRAME; + videoFlags|=SDL_NOFRAME; videoFlags|=SDL_RESIZABLE; }
but without border you can not resize the window and it looks "odd"
Maybe "no border" is too much. Can it have a border but no title bar ? :)
Get this with the following patch:
--- VideoRender.cpp (Revision 206)
+++ VideoRender.cpp (Arbeitskopie)
@@ -20,6 +20,7 @@
#include "VideoRender.h"
#include <SparkTools.h>
+#include <libintl.h>
#include "../Config.h"
#include "../MythPlayerDefines.h"
@@ -506,7 +507,7 @@
// videoFlags|=SDL_FULLSCREEN;
}else
{
-// videoFlags|=SDL_NOFRAME;
+ videoFlags|=SDL_NOFRAME;
videoFlags|=SDL_RESIZABLE;
}
but without border you can not resize the window and it looks "odd"
Maybe "no border" is too much. Can it have a border but no title bar ? :)