1

我刚刚使用快速创建了“jotty”教程应用程序。它工作正常,但我收到以下警告:

$ quickly run
/usr/lib/python2.7/dist-packages/gi/overrides/Gtk.py:391: Warning:
       g_object_set_property: construct property "type" for object `Window' 
       can't be set after construction
Gtk.Window.__init__(self, type=type, **kwds)
/usr/lib/python2.7/dist-packages/gi/overrides/Gtk.py:391: Warning:
       g_object_set_property: construct property "type" for object `AppWindow' 
       can't be set after construction
Gtk.Window.__init__(self, type=type, **kwds)

我正在运行 ubuntu 12.04 。在此先感谢您的帮助

4

1 回答 1

0

Open your /usr/lib/python2.7/dist-packages/gi/overrides/Gtk.py and make change (line 391)

from:

class Window(Gtk.Window):
    def __init__(self, type=Gtk.WindowType.TOPLEVEL, **kwds):
        Gtk.Window.__init__(self, type=type, **kwds)

to:

class Window(Gtk.Window):
    def __init__(self, type=Gtk.WindowType.TOPLEVEL, **kwds):
        # type is a construct-only property; if it is already set (e. g. by
        # GtkBuilder), do not try to set it again and just ignore it
        try:
            self.get_property('type')
            Gtk.Window.__init__(self, **kwds)
        except TypeError:
            Gtk.Window.__init__(self, type=type, **kwds)
于 2013-06-14T12:56:45.973 回答