From f6b8441a778bae8fe4a3e19a9151f3aa2b0bcdc7 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 20 Oct 1998 05:03:03 +0000 Subject: Clean up the toplevel configurator panel. svn path=/trunk/; revision=2116 --- fetchmailconf | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/fetchmailconf b/fetchmailconf index d0e69674..7adf58b4 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -619,9 +619,16 @@ class ConfigurationEdit(Frame, MyWidget): df = Frame(gf) + ff = Frame(df) + if self.mode != 'novice': + # Set the postmaster + log = LabeledEntry(ff, ' Postmaster:', self.postmaster, '14') + log.pack(side=RIGHT, anchor=E) # Set the poll interval - de = LabeledEntry(df, ' Poll interval:', self.poll_interval, '14') + de = LabeledEntry(ff, ' Poll interval:', self.poll_interval, '14') de.pack(side=RIGHT, anchor=E) + ff.pack() + df.pack() if self.mode != 'novice': @@ -641,9 +648,6 @@ class ConfigurationEdit(Frame, MyWidget): # Set the idfile log = LabeledEntry(gf, ' Idfile:', self.idfile, '14') log.pack(side=RIGHT, anchor=E) - # Set the postmaster - log = LabeledEntry(gf, ' Postmaster:', self.postmaster, '14') - log.pack(side=RIGHT, anchor=E) gf.pack(fill=X) -- cgit v1.2.3