tasque r3 - in trunk: . src



Author: btimothy
Date: Wed Mar 12 20:06:34 2008
New Revision: 3
URL: http://svn.gnome.org/viewvc/tasque?rev=3&view=rev

Log:
* src/PreferencesDialog.cs, src/NoteDialog.cs, src/Application.cs,
  src/TaskWindow.cs: Adjust icons that are used in the window
  titlebar to be 16x16 so they appear better.  Also adjust the tasque
  icon and execute icon in the tray icon to be 16x16 to match the
  rest of the menu.

Modified:
   trunk/ChangeLog
   trunk/src/Application.cs
   trunk/src/NoteDialog.cs
   trunk/src/PreferencesDialog.cs
   trunk/src/TaskWindow.cs

Modified: trunk/src/Application.cs
==============================================================================
--- trunk/src/Application.cs	(original)
+++ trunk/src/Application.cs	Wed Mar 12 20:06:34 2008
@@ -432,7 +432,7 @@
 				ImageMenuItem showTasksItem = new ImageMenuItem
 					(Catalog.GetString ("Show Tasks ..."));
 
-				showTasksItem.Image = new Gtk.Image(Utilities.GetIcon ("tasque-24", 24));
+				showTasksItem.Image = new Gtk.Image(Utilities.GetIcon ("tasque-16", 16));
 				showTasksItem.Sensitive = backend != null && backend.Initialized;
 				showTasksItem.Activated += OnShowTaskWindow;
 				popupMenu.Add (showTasksItem);
@@ -461,7 +461,7 @@
 				ImageMenuItem refreshAction = new ImageMenuItem
 					(Catalog.GetString ("Refresh Tasks"));
 
-				refreshAction.Image = new Gtk.Image(Utilities.GetIcon (Gtk.Stock.Execute, 24));
+				refreshAction.Image = new Gtk.Image(Utilities.GetIcon (Gtk.Stock.Execute, 16));
 				refreshAction.Sensitive = backend != null && backend.Initialized;
 				refreshAction.Activated += OnRefreshAction;
 				popupMenu.Add (refreshAction);

Modified: trunk/src/NoteDialog.cs
==============================================================================
--- trunk/src/NoteDialog.cs	(original)
+++ trunk/src/NoteDialog.cs	Wed Mar 12 20:06:34 2008
@@ -22,7 +22,7 @@
 			this.Title = String.Format(Catalog.GetString("Notes for: {0:s}"), task.Name);
 			this.HasSeparator = false;
 			this.SetSizeRequest(350,320);
-			this.Icon = Utilities.GetIcon ("tasque-48", 48);
+			this.Icon = Utilities.GetIcon ("tasque-16", 16);
 			//this.Flags = Gtk.DialogFlags.DestroyWithParent;
 			
 			Gtk.ScrolledWindow sw = new Gtk.ScrolledWindow ();

Modified: trunk/src/PreferencesDialog.cs
==============================================================================
--- trunk/src/PreferencesDialog.cs	(original)
+++ trunk/src/PreferencesDialog.cs	Wed Mar 12 20:06:34 2008
@@ -83,7 +83,7 @@
 		private void Init()
 		{
 			Logger.Debug("Called Preferences Init");
-			this.Icon = Utilities.GetIcon ("tasque-48", 48);
+			this.Icon = Utilities.GetIcon ("tasque-16", 16);
 			// Update the window title
 			this.Title = string.Format ("Tasque Preferences");	
 			

Modified: trunk/src/TaskWindow.cs
==============================================================================
--- trunk/src/TaskWindow.cs	(original)
+++ trunk/src/TaskWindow.cs	Wed Mar 12 20:06:34 2008
@@ -89,7 +89,7 @@
 			int height;
 			int width;
 			
-			this.Icon = Utilities.GetIcon ("tasque-48", 48);
+			this.Icon = Utilities.GetIcon ("tasque-16", 16);
 			// Update the window title
 			Title = string.Format ("Tasque");	
 



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