Check-in [748d2aaed8]
Overview
Comment: | Fixed gtk.main_iteration() extraneous parameter in gui_startup. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
748d2aaed82d923b6407199393b88fdb |
User & Date: | mario on 2015-04-26 22:21:12 |
Other Links: | manifest | tags |
Context
2015-04-26
| ||
22:21 | Missing Exception capture for error log. check-in: f69b9ce181 user: mario tags: trunk | |
22:21 | Fixed gtk.main_iteration() extraneous parameter in gui_startup. check-in: 748d2aaed8 user: mario tags: trunk | |
15:35 | Cover most catched exceptions with log messages. check-in: 363dce5eb9 user: mario tags: trunk | |
Changes
Modified uikit.py from [09bab8deb1] to [80c9deb8b2].
︙ | ︙ | |||
661 662 663 664 665 666 667 | try: if p <= 0.0: pass elif p < 1.0: progressbar.set_fraction(p) progressbar.set_property("text", msg) | | | 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 | try: if p <= 0.0: pass elif p < 1.0: progressbar.set_fraction(p) progressbar.set_property("text", msg) while gtk.events_pending(): gtk.main_iteration() else: progresswin.hide() except Exception as e: log.ERR("gui_startup()", e) |
︙ | ︙ |