Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Version tweak |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d74a2134d775aa02ceb19daf8d8f6455 |
User & Date: | kevin 2017-02-28 03:17:44 |
Context
2017-02-28
| ||
03:31 | Minor tweaks check-in: dc006a1b0c user: kevin tags: trunk | |
03:17 | Version tweak check-in: d74a2134d7 user: kevin tags: trunk | |
2017-02-27
| ||
03:47 | More minor tweaks check-in: 1b43838aa8 user: kevin tags: trunk | |
Changes
Changes to QuickWho.py.
︙ | ︙ | |||
71 72 73 74 75 76 77 | def __init__(self, parent): Tk.__init__(self, parent) try: self.tk.call('console', 'hide') except TclError: pass | | | 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | def __init__(self, parent): Tk.__init__(self, parent) try: self.tk.call('console', 'hide') except TclError: pass self.setAppName('QuickWho', '6.1') self.makeImages() if self.isAqua(): self.tk.call('package', 'require', 'tclservices') self.tk.call('package', 'require', 'cocoaprint') self.createcommand('::tk::mac::PerformService', self.runService) self.tk.call('package', 'require', 'fullscreen') self.tk.call('package', 'require', 'aem') |
︙ | ︙ |