After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 721040 - The accessible role of GtkDrawingArea should be ATK_ROLE_DRAWING_AREA
The accessible role of GtkDrawingArea should be ATK_ROLE_DRAWING_AREA
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Accessibility
3.10.x
Other Linux
: Normal normal
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2013-12-25 19:51 UTC by Joanmarie Diggs (IRC: joanie)
Modified: 2014-01-04 22:41 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Joanmarie Diggs (IRC: joanie) 2013-12-25 19:51:55 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>