GNOME Bugzilla – Bug 721040
The accessible role of GtkDrawingArea should be ATK_ROLE_DRAWING_AREA
Last modified: 2014-01-04 22:41:39 UTC
$ python3 >>> from gi.repository import Gtk >>> drawingArea = Gtk.DrawingArea() >>> drawingArea.get_accessible().get_role() <enum ATK_ROLE_UNKNOWN of type AtkRole> For comparison: >>> button = Gtk.Button() >>> button.get_accessible().get_role() <enum ATK_ROLE_PUSH_BUTTON of type AtkRole>