Patch from Raphael Ackermann <raphael.ackermann@gmail.com> -- Fix 0001538: tabs and spaces are mixed in some source files

svn: r9713
This commit is contained in:
Brian Matherly
2008-01-05 20:10:26 +00:00
parent aa8288eddd
commit bf3900f043
57 changed files with 499 additions and 440 deletions

View File

@@ -2081,9 +2081,9 @@ class MaskedEntry(gtk.Entry):
else:
# Keep the static char where it is.
if direction == DIRECTION_LEFT:
new_text = new_text + text[i]
new_text = new_text + text[i]
else:
new_text = text[i] + new_text
new_text = text[i] + new_text
i += direction
return new_text