195
196
197
198
199
200
201
202
203
204
205
206
207
208 | # no longer using `conf.show_favicons`
# Statusbar stub (defers to parent/main window, if in GUI mode)
def status(self, *args, **kw):
if self.parent: self.parent.status(*args, **kw)
else: log.INFO("status():", *v)
#--------------------- streams/model data accesss ---------------------------
# Traverse category TreeModel to set current, expand parent nodes |
>
>
| 195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210 | # no longer using `conf.show_favicons`
# Statusbar stub (defers to parent/main window, if in GUI mode)
def status(self, *args, **kw):
if self.parent: self.parent.status(*args, **kw)
else: log.INFO("status():", *v)
def warn(self, *args, **kw):
self.status(*args, icon="gtk-dialog-warning", **kw)
#--------------------- streams/model data accesss ---------------------------
# Traverse category TreeModel to set current, expand parent nodes |