Changeset 3275
- Timestamp:
- 06/23/08 22:10:49 (7 months ago)
- Files:
-
- 1 modified
-
branches/deluge-0.6/deluge/ui/gtkui/mainwindow.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/deluge-0.6/deluge/ui/gtkui/mainwindow.py
r3267 r3275 97 97 def present(self): 98 98 # Restore the proper x,y coords for the window prior to showing it 99 self.config["window_x_pos"] = self.window_x_pos 100 self.config["window_y_pos"] = self.window_y_pos 99 try: 100 self.config["window_x_pos"] = self.window_x_pos 101 self.config["window_y_pos"] = self.window_y_pos 102 except: 103 pass 101 104 102 105 self.window.present()
