Replacing set_data/get_data with a python attribute
set_data/get_data not available anymore is not available anymore [1]. The
recommended approach is using a python attribute, which we do.
Changing to use the attribute in the activity class slipped by mistake
into 6330204e91.
[1] https://bugzilla.gnome.org/show_bug.cgi?id=641944
Signed-off-by: Simon Schampijer <simon@laptop.org>
Tested-by: Manuel Quiñones <manuq@laptop.org>
This commit is contained in:
@@ -80,7 +80,7 @@ class _PaletteMenuWidget(Gtk.Menu):
|
||||
Gtk.Menu.__init__(self)
|
||||
|
||||
accel_group = Gtk.AccelGroup()
|
||||
self.set_data('sugar-accel-group', accel_group)
|
||||
self.sugar_accel_group = accel_group
|
||||
self.get_toplevel().add_accel_group(accel_group)
|
||||
|
||||
self._popup_position = (0, 0)
|
||||
@@ -248,7 +248,7 @@ class _PaletteWindowWidget(Gtk.Window):
|
||||
self.set_position(Gtk.WindowPosition.NONE)
|
||||
|
||||
accel_group = Gtk.AccelGroup()
|
||||
self.set_data('sugar-accel-group', accel_group)
|
||||
self.sugar_accel_group = accel_group
|
||||
self.add_accel_group(accel_group)
|
||||
|
||||
self._old_alloc = None
|
||||
|
||||
Reference in New Issue
Block a user