On Jul 8, 2012, at 1:20 AM, Robert Park wrote:
> On Fri, Jul 6, 2012 at 4:52 PM, John Ralls wrote:
>> WTF? Button and Label are both descendants of GtkWidget, which, according to
>> the PyGObject tutorial [0] is supposed
>> to implement drag_dest_set(). The example in th
On Jul 8, 2012, at 1:20 AM, Robert Park wrote:
> On Fri, Jul 6, 2012 at 4:52 PM, John Ralls wrote:
>> WTF? Button and Label are both descendants of GtkWidget, which, according to
>> the PyGObject tutorial [0] is supposed
>> to implement drag_dest_set(). The example in th
On Fri, Jul 6, 2012 at 4:52 PM, John Ralls wrote:
> WTF? Button and Label are both descendants of GtkWidget, which, according to
> the PyGObject tutorial [0] is supposed
> to implement drag_dest_set(). The example in the tutorial also fails with
> this error.
Something's wron
Am 06.07.2012 23:52, schrieb John Ralls:
>>>> from gi.repository import Gtk
>>>> label = Gtk.Label()
>>>> label.drag_dest_set(0, [], 0)
> Traceback (most recent call last):
> File "", line 1, in
> AttributeError: 'Label'
>>> from gi.repository import Gtk
>>> label = Gtk.Label()
>>> label.drag_dest_set(0, [], 0)
Traceback (most recent call last):
File "", line 1, in
AttributeError: 'Label' object has no attribute 'drag_dest_set'
>>> button = G