[pygtk] Little BUG in Python/Gtk

=?iso-8859-1?Q?Val=E9ry?= Febvre vfebvre@easter-eggs.com
Thu, 16 Nov 2000 18:00:30 +0100


Hi,

I found a little bug in python-gtk
The function to set the size of the vertical tab border doesn't work
I don't known if it has been corrected yet?!?


My version of Python-Gtk is a debian package:
        python-gtk_0.6.3-5.deb

In the file gtk.py
In the class GtkNotebook
the function set_tab_vborder is bad

Original def:
def set_tab_vborder(self, tab_vborder):
        _gtk.gtk_notebook_set_tab_hborder(self._o, tab_vborder)

Corrected def:
def set_tab_vborder(self, tab_vborder):
        _gtk.gtk_notebook_set_tab_vborder(self._o, tab_vborder)

Cheers