Check-in [576bac1d25]
Overview
| Comment: | Fetch meta["title"] instead of ["id"] for About dialog |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
576bac1d254fbc47f0231bbc3a5ad1c9 |
| User & Date: | mario on 2016-12-31 14:14:55 |
| Other Links: | manifest | tags |
Context
|
2016-12-31
| ||
| 14:53 | Updated help.chm, whitespace fixed, new theme download dir back. check-in: 07d8e1cf0d user: mario tags: trunk | |
| 14:14 | Fetch meta["title"] instead of ["id"] for About dialog check-in: 576bac1d25 user: mario tags: trunk | |
| 14:14 | Apply new options right when installing plugins. check-in: 80ca7a6731 user: mario tags: trunk | |
Changes
Modified uikit.py from [974ce2f9f3] to [c3a8703c77].
| ︙ | ︙ | |||
794 795 796 797 798 799 800 801 |
# Auxiliary window: about dialog
#
class AboutStreamtuner2(AuxiliaryWindow):
def __init__(self, parent):
a = gtk.AboutDialog()
| > | | | | | | 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 |
# Auxiliary window: about dialog
#
class AboutStreamtuner2(AuxiliaryWindow):
def __init__(self, parent):
m = parent.meta
a = gtk.AboutDialog()
a.set_name(m.get("title"))
a.set_version(m.get("version"))
a.set_license(m.get("license"))
a.set_authors((get_data("CREDITS") or parent.meta["author"]).split("\n"))
a.set_website(m.get("url"))
a.connect("response", lambda a, ok: ( a.hide(), a.destroy() ) )
a.show_all()
|