Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--canvas.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/canvas.py b/canvas.py
index 8536cec..0521466 100644
--- a/canvas.py
+++ b/canvas.py
@@ -58,8 +58,13 @@ class Canvas(Gtk.AspectFrame):
self.eb.show_all()
for e in self.__entries__.values():
e.show()
+ self.set_parent_for(activity)
self.set_bg_color('black')
+ def set_parent_for(self, parent):
+ for entry in self.__entries__.values():
+ entry.set_parent_win(parent)
+
def set_bg_color (self, color):
try:
if type(color) == str: