Changeset e7a19eed07ed6e0b459e69bf7e4e6678ea372e32
- Timestamp:
- 02/25/09 04:48:20 (3 years ago)
- Author:
- Lincoln de Sousa <lincoln@…>
- Children:
- 2d18e1b6fb53ac8a1ea498e80b756b46bd4bc26a
- Parents:
- 79065171ab9e78c426e9c46c8ff59eb390d7cd5e
- git-committer:
- Lincoln de Sousa <lincoln@…> (02/25/09 04:48:20)
- Message:
-
Removing the set_keep_above from about dialog
constructor, it is not necessary anymore once main window
is hidden before showing about and prefs windows.
The another change was done to make lines fit in 79
columns and make pylint a little bit more happy.
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r6e52bd6
|
re7a19ee
|
|
| 58 | 58 | root='aboutdialog') |
| 59 | 59 | dialog = self.get_widget('aboutdialog') |
| 60 | | |
| 61 | | # the terminal window can be opened and the user *must* see |
| 62 | | # this window |
| 63 | | dialog.set_keep_above(True) |
| 64 | 60 | |
| 65 | 61 | # images |
| … |
… |
|
| 917 | 913 | box.show() |
| 918 | 914 | |
| | 915 | pagenum = self.notebook.page_num(box) |
| 919 | 916 | last_added = len(self.term_list) |
| 920 | 917 | self.term_list.append(box.terminal) |
| … |
… |
|
| 933 | 930 | bnt.connect('button-press-event', self.show_tab_menu) |
| 934 | 931 | bnt.connect('clicked', lambda *x: |
| 935 | | self.notebook.set_current_page(self.notebook.page_num(box))) |
| | 932 | self.notebook.set_current_page(pagenum)) |
| 936 | 933 | bnt.show() |
| 937 | 934 | |