Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/MMapArea.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/MMapArea.py')
-rw-r--r--src/MMapArea.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/MMapArea.py b/src/MMapArea.py
index 37473a5..5be4470 100644
--- a/src/MMapArea.py
+++ b/src/MMapArea.py
@@ -740,7 +740,8 @@ class MMapArea (gtk.DrawingArea):
type = self.mode
if type == MODE_TEXT:
- thought = TextThought.TextThought (coords, self.pango_context, self.nthoughts, self.save, self.undo, loading, self.background_color, self.foreground_color, fixed=self.parent.parent, parent=self)
+ # fixed<-_vbox<-_sw<-_main_area
+ thought = TextThought.TextThought (coords, self.pango_context, self.nthoughts, self.save, self.undo, loading, self.background_color, self.foreground_color, fixed=self.parent.parent.parent.parent, parent=self)
elif type == MODE_LABEL:
thought = LabelThought.LabelThought (coords, self.pango_context, self.nthoughts, self.save, self.undo, loading, self.background_color, self.foreground_color)
elif type == MODE_IMAGE: