gbrainy r414 - in trunk/src: . MemoryGames PuzzleGames



Author: jmas
Date: Tue Aug  5 19:45:00 2008
New Revision: 414
URL: http://svn.gnome.org/viewvc/gbrainy?rev=414&view=rev

Log:
2008-08-05 Jordi Mas <jmas softcatala org>

	* src/GameDrawingArea.cs: More space between the graphic and the text
	* src/MemoryGames/MemoryIndications.cs: Missing Stroke ()
	* src/PuzzleGames/PuzzleSquares.cs: Fixes typo



Modified:
   trunk/src/ChangeLog
   trunk/src/GameDrawingArea.cs
   trunk/src/MemoryGames/MemoryIndications.cs
   trunk/src/PuzzleGames/PuzzleSquares.cs

Modified: trunk/src/GameDrawingArea.cs
==============================================================================
--- trunk/src/GameDrawingArea.cs	(original)
+++ trunk/src/GameDrawingArea.cs	Tue Aug  5 19:45:00 2008
@@ -243,7 +243,7 @@
 		gr.MoveTo (x, y);
 		gr.ShowPangoText (String.Format (Catalog.GetString ("Time played {0} (average per game {1})"), session.GameTime, session.TimePerGame));
 		
-		y += 0.06;
+		y += 0.1;
 		DrawGraphicBar (gr, x + 0.05, y);
 		y += 0.4;
 

Modified: trunk/src/MemoryGames/MemoryIndications.cs
==============================================================================
--- trunk/src/MemoryGames/MemoryIndications.cs	(original)
+++ trunk/src/MemoryGames/MemoryIndications.cs	Tue Aug  5 19:45:00 2008
@@ -116,6 +116,7 @@
 					break;
 				}
 				gr.Rectangle (x, y, points, points);
+				gr.Stroke ();
 				gr.DrawTextCentered (x + points /2 , y + points /2, ((int)obj).ToString ());
 			}
 		}	

Modified: trunk/src/PuzzleGames/PuzzleSquares.cs
==============================================================================
--- trunk/src/PuzzleGames/PuzzleSquares.cs	(original)
+++ trunk/src/PuzzleGames/PuzzleSquares.cs	Tue Aug  5 19:45:00 2008
@@ -30,7 +30,7 @@
 	}
 
 	public override string Question {
-		get {return Catalog.GetString ("How many squares of any size do you count of in the figure below?");} 
+		get {return Catalog.GetString ("How many squares of any size do you count in the figure below?");} 
 	}
 
 	public override string Tip {



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