rev 321 - offlineimap/head/offlineimap/ui
[email protected] Mon, 6 Jan 2003 12:18:07 -0600 (CST)
| Newsgroups | gmane.mail.imap.offlineimap.subversion |
|---|---|
| Message-ID | <[email protected]> |
Author: jgoerzen
Date: 2003-01-06 12:18:06 -0600 (Mon, 06 Jan 2003)
New Revision: 321
Modified:
offlineimap/head/offlineimap/ui/Tk.py
Log:
More fine-tunning. Looks like using the grid manager is helping out.
Modified: offlineimap/head/offlineimap/ui/Tk.py
==============================================================================
--- offlineimap/head/offlineimap/ui/Tk.py (original)
+++ offlineimap/head/offlineimap/ui/Tk.py Mon Jan 6 12:18:07 2003
@@ -330,13 +330,13 @@
self.fontfamily = fontfamily
self.fontsize = fontsize
self.frame = Frame(self.top, background = 'black')
- self.frame.pack(side = BOTTOM, expand = 0, fill = X)
+ self.frame.pack(side = BOTTOM, expand = 1, fill = X)
self._createcanvas(self.frame)
self.label = Label(self.frame, text = accountname,
background = "black", foreground = "blue",
font = (self.fontfamily, self.fontsize))
- self.label.pack(side = LEFT)
+ self.label.grid(sticky = E, row = 0, column = 1)
def getnewthreadframe(s):
return LEDThreadFrame(s.canvas)
@@ -344,7 +344,8 @@
def _createcanvas(self, parent):
c = LEDFrame(parent)
self.canvas = c
- c.pack(side = LEFT, expand = 0, fill = X)
+ c.grid(sticky = E, row = 0, column = 0)
+ parent.grid_columnconfigure(1, weight = 1)
#c.pack(side = LEFT, expand = 0, fill = X)
def startsleep(s, sleepsecs):
@@ -356,7 +357,7 @@
padx = 0, pady = 0,
font = (s.fontfamily, s.fontsize), borderwidth = 0,
relief = 'solid')
- s.button.pack(side = LEFT)
+ s.button.grid(sticky = E, row = 0, column = 2)
def syncnow(s):
s.sleeping_abort = 1