Features/GTK3/Shell: Difference between revisions

Erikos (talk | contribs)
Erikos (talk | contribs)
No edit summary
Line 13: Line 13:
===gtk_clipboard_set_with_data not introspected===
===gtk_clipboard_set_with_data not introspected===
http://www.daa.com.au/pipermail/pygtk/2011-July/019875.html
http://www.daa.com.au/pipermail/pygtk/2011-July/019875.html
=== cant call gdkwindow.raise() ===
Update: this bug is fixed in pygobject, see https://bugzilla.gnome.org/show_bug.cgi?id=676746 .
raise is reserved word in Python.
Workaround: getattr(win, 'raise')()
See http://mail.gnome.org/archives/python-hackers-list/2011-December/msg00011.html


=== xklavier ===
=== xklavier ===
Line 174: Line 166:
* https://bugzilla.gnome.org/show_bug.cgi?id=644926 pygobject missing header file in patch. was merged 2012-03-27
* https://bugzilla.gnome.org/show_bug.cgi?id=644926 pygobject missing header file in patch. was merged 2012-03-27
* http://git.gnome.org/browse/gtk+/commit/?id=db569cbee7e3842d802c5f1d53e28d0dde98ffeb fix which landed in GTK+
* http://git.gnome.org/browse/gtk+/commit/?id=db569cbee7e3842d802c5f1d53e28d0dde98ffeb fix which landed in GTK+
=== cant call gdkwindow.raise() ===
Needs:
* https://bugzilla.gnome.org/show_bug.cgi?id=676746 fix landed in pygobject
* use gtk_window.get_window().raise_ instead