Override canvas property in Activity class #1795
This commit is contained in:
parent
67af1cb77d
commit
3bf70d642c
@ -393,6 +393,9 @@ class Activity(Window, gtk.Container):
|
|||||||
"""Returns the bundle_id from the activity.info file"""
|
"""Returns the bundle_id from the activity.info file"""
|
||||||
return os.environ['SUGAR_BUNDLE_ID']
|
return os.environ['SUGAR_BUNDLE_ID']
|
||||||
|
|
||||||
|
def get_canvas(self):
|
||||||
|
return Window.get_canvas(self)
|
||||||
|
|
||||||
def set_canvas(self, canvas):
|
def set_canvas(self, canvas):
|
||||||
"""Sets the 'work area' of your activity with the canvas of your
|
"""Sets the 'work area' of your activity with the canvas of your
|
||||||
choice.
|
choice.
|
||||||
@ -403,6 +406,8 @@ class Activity(Window, gtk.Container):
|
|||||||
if not self._read_file_called:
|
if not self._read_file_called:
|
||||||
canvas.connect('map', self.__canvas_map_cb)
|
canvas.connect('map', self.__canvas_map_cb)
|
||||||
|
|
||||||
|
canvas = property(get_canvas, set_canvas)
|
||||||
|
|
||||||
def __screen_size_changed_cb(self, screen):
|
def __screen_size_changed_cb(self, screen):
|
||||||
self._adapt_window_to_screen()
|
self._adapt_window_to_screen()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user