Simplify appliation state restore.
Don't override old .shown status / liststore position should be handled by GenericChannel.
Suppress TreeView errors when clicking on empty station list area.
check-in: 2687258c8c user: mario tags: trunk
Tested fixed-width for pixbuf cellrenderer in stream lists; little effect.
Set .module attribute for auxiliary windows (unused).
check-in: b434d63e4e user: mario tags: trunk
# instance has to be built. Also ties main.channels{} or .features{}# dicts together for feature windows. Used by search, config, streamedit.#classAuxiliaryWindow(object):def __init__(self, parent):self.main = parent
self.module=self.__class__.__name__self.meta = plugin_meta(None, inspect.getcomments(inspect.getmodule(self)))def __getattr__(self, name):if name inself.main.__dict__:returnself.main.__dict__[name]elif name inself.main.__class__.__dict__:returnself.main.__class__.__dict__[name]