Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TheDrawingAreaEventBox.py
diff options
context:
space:
mode:
Diffstat (limited to 'TheDrawingAreaEventBox.py')
-rwxr-xr-xTheDrawingAreaEventBox.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/TheDrawingAreaEventBox.py b/TheDrawingAreaEventBox.py
index 630483a..9980674 100755
--- a/TheDrawingAreaEventBox.py
+++ b/TheDrawingAreaEventBox.py
@@ -49,7 +49,7 @@ class TheDrawingAreaEventBox(gtk.EventBox):
self.__drawingArea = gtk.DrawingArea()
self.add(self.__drawingArea)
self.__figures = []
- self.__lineThickness = 1
+ self.__lineThickness = 5
# number of steps (for the figures overall) currently drawn
# only used in reading mode (which is the starting mode)
self.__drawn_steps = -1
@@ -254,7 +254,7 @@ class TheDrawingAreaEventBox(gtk.EventBox):
'''
new_figures_array = []
for current_line in text_file.readlines():
- if current_line != "New" :
+ if current_line != "New\n" :
new_figure = []
for current_point_string in current_line.split(' '):
if current_point_string: