tasque r103 - in trunk: . src



Author: sharm
Date: Tue Sep 16 00:38:06 2008
New Revision: 103
URL: http://svn.gnome.org/viewvc/tasque?rev=103&view=rev

Log:
* src/TaskWindow.cs: Don't paint the background of the status bar white
  (it was overriding theme colors).  Partial fix for bug #532766,
  patch courtesy of Mark A. Nicolosi.

Modified:
   trunk/ChangeLog
   trunk/src/TaskWindow.cs

Modified: trunk/src/TaskWindow.cs
==============================================================================
--- trunk/src/TaskWindow.cs	(original)
+++ trunk/src/TaskWindow.cs	Tue Sep 16 00:38:06 2008
@@ -114,19 +114,10 @@
 			AddAccelGroup (accelGroup);
 			globalKeys = new GlobalKeybinder (accelGroup);
 
-			// Start with an event box to paint the background white
-			EventBox eb = new EventBox();
-			eb.BorderWidth = 0;
-			eb.ModifyBg(	StateType.Normal, 
-					new Gdk.Color(255,255,255));
-			eb.ModifyBase(	StateType.Normal, 
-					new Gdk.Color(255,255,255));
-			
 			VBox mainVBox = new VBox();
 			mainVBox.BorderWidth = 0;
 			mainVBox.Show ();
-			eb.Add(mainVBox);
-			this.Add (eb);
+			this.Add (mainVBox);
 			
 			HBox topHBox = new HBox (false, 0);
 			topHBox.BorderWidth = 4;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]