Check-in [c98c1aca39]
Overview
| Comment: | Colorize statusbar hint about config reset / save. | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 
c98c1aca396358edb272315fc33bcf70 | 
| User & Date: | mario on 2016-12-11 17:11:55 | 
| Other Links: | manifest | tags | 
Context
| 
   2016-12-11 
 | ||
| 17:19 | Use $t.found check-in: 93eb14b5ef user: mario tags: trunk | |
| 17:11 | Colorize statusbar hint about config reset / save. check-in: c98c1aca39 user: mario tags: trunk | |
| 17:11 | Oliver: fixed the $kwargs/$argsβ$iargs issue and colors check-in: 7e49e61eee user: mario tags: trunk | |
Changes
Modified contrib/prefstore.py from [1f207b383e] to [744b6117ce].
| ︙ | ︙ | |||
68 69 70 71 72 73 74  | 
                del conf[key]
        # add defs
        conf.defaults()
        for name in module_list():
            if not name in conf.plugins:
                conf.add_plugin_defaults(plugin_meta(module=name), name)
        # show configwin
 | |  | 68 69 70 71 72 73 74 75 76  | 
                del conf[key]
        # add defs
        conf.defaults()
        for name in module_list():
            if not name in conf.plugins:
                conf.add_plugin_defaults(plugin_meta(module=name), name)
        # show configwin
        self.parent.status('<span background="yellow">Default settings restored. Press [save] to apply them, then restart Streamtuner2.</span>', markup=1)
        self.parent.configwin.open(None)
 |