gtg team mailing list archive
-
gtg team
-
Mailing list archive
-
Message #03459
[Merge] lp:~anantzoid/gtg/cool-new-feature into lp:gtg
Anant Gupta has proposed merging lp:~anantzoid/gtg/cool-new-feature into lp:gtg.
Requested reviews:
Gtg developers (gtg)
For more details, see:
https://code.launchpad.net/~anantzoid/gtg/cool-new-feature/+merge/97669
Bug #539037 fixed.
--
https://code.launchpad.net/~anantzoid/gtg/cool-new-feature/+merge/97669
Your team Gtg developers is requested to review the proposed merge of lp:~anantzoid/gtg/cool-new-feature into lp:gtg.
=== modified file 'GTG/gtk/browser/browser.py'
--- GTG/gtk/browser/browser.py 2012-03-05 15:23:05 +0000
+++ GTG/gtk/browser/browser.py 2012-03-15 14:51:39 +0000
@@ -33,6 +33,7 @@
import gobject
import gtk
+
#our own imports
import GTG
from GTG.backends.backendsignals import BackendSignals
@@ -451,9 +452,9 @@
# # inferior to the "first run" width
# self.builder.get_object("hpaned1").set_position(250)
# return
-
- width = self.config.get('width')
- height = self.config.get('height')
+#default window size
+ width, height = self.window.get_size()
+ #height = self.window.get_size()
if width and height:
self.window.resize(width, height)
Follow ups