Fix typos in comments

This commit is contained in:
Thibault Févry 2013-07-06 04:12:05 +02:00
parent 39e300ac72
commit c289f6608b
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ for filename in sys.argv[1:]:
print "imgcheck: %s has no color table" % filename
#img.close()
# Perform cxolor table subtraction
# Perform color table subtraction
basecolors = map(lambda (n, rgb): rgb, colortables[0][1])
basecolors.sort()
subtracted = []

View file

@ -666,7 +666,7 @@ class TracksEditor:
screen_height = gtk.gdk.screen_height()
if self.map_width < 0.75 * screen_width and self.map_height < 0.75 * screen_width:
# Screen is large relative to the image. Grab enough
# space to display the wntire map. and never scroll.
# space to display the entire map. and never scroll.
# There should be enough space around the edges for window
# decorations, task bars, etc.
vbox.pack_start(self.drawing_area, expand=True, fill=True, padding=0)