diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-10-20 05:03:03 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-10-20 05:03:03 +0000 |
commit | f6b8441a778bae8fe4a3e19a9151f3aa2b0bcdc7 (patch) | |
tree | 81b86074756d6e55d9b4eb32a88a256b07cdfe1f | |
parent | 42eddaeaf36d467074f329599193030c3beba8ba (diff) | |
download | fetchmail-f6b8441a778bae8fe4a3e19a9151f3aa2b0bcdc7.tar.gz fetchmail-f6b8441a778bae8fe4a3e19a9151f3aa2b0bcdc7.tar.bz2 fetchmail-f6b8441a778bae8fe4a3e19a9151f3aa2b0bcdc7.zip |
Clean up the toplevel configurator panel.
svn path=/trunk/; revision=2116
-rwxr-xr-x | fetchmailconf | 12 |
1 files 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) |