This is a general libvte issue. Try this:

########
#!/usr/bin/env python
import gtk
import vte
if __name__ == '__main__':
        v = vte.Terminal()
        v.connect("child-exited", lambda term: gtk.main_quit())
        v.fork_command()
        window = gtk.Window()
        window.add(v)
        window.connect('delete-event', lambda window, event: gtk.main_quit())
        window.show_all()
        gtk.main()
########

The window can be expanded but not shrunk.

** Package changed: update-manager (Ubuntu) => vte (Ubuntu)

** Summary changed:

- "Applying changes" window in Update Manager can be expanded but not shrunk
+ vte widget allows window to expand but not shrink

-- 
vte widget allows window to expand but not shrink
https://bugs.launchpad.net/bugs/635400
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to