changeset 45:73b8fc7252f2

Removed forcing titlebar flag on Unix... Does not seem to prevent the titlebar however with most window managers.
author Brian Smith <brian@dbsoft.org>
date Tue, 03 Apr 2012 12:16:43 -0500
parents 7842d33cbba1
children bda69de67a09
files cc.c
diffstat 1 files changed, 0 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/cc.c	Thu Feb 23 07:12:58 2012 -0600
+++ b/cc.c	Tue Apr 03 12:16:43 2012 -0500
@@ -271,15 +271,6 @@
 	int z = 0;
 	ULONG flStyle = DW_FCF_SIZEBORDER | DW_FCF_TASKLIST;
 
-#if defined(__UNIX__) && !defined(__MAC__)
-	/* Enlightenment, the window manager we anticipate on
-	 * Red Hat does not make a size border unless it has
-	 * a titlebar in it's default theme.  So we must force
-	 * a titlebar.  This is not the case on other platorms.
-	 */
-	flStyle |= DW_FCF_TITLEBAR;
-#endif
-
 	hwndFrame = dw_window_new(HWND_DESKTOP, "Control Center", flStyle);
 
 	hwndHbox = dw_box_new(BOXVERT, 0);