How do I hide the toolbar of a gnome.ui.App() instance?
If you just call hide() on the toolbar, it is hidden but its display area is still visible (empty, though); that’s because it’s held in a Bonobo Dock. You need hide the dock item itself, but first you have to get the dock item. One way is to use get_dock_item_by_name(). Here is a snippet from some test code that might put you on the right track. The variable my_app is a reference to the gnome.ui.App instance.