From 37197fbecca4bd08bf251e2a5add4be019cc6db7 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Fri, 24 Jan 2020 23:40:23 +0000 Subject: fetchmailconf: Add verbose/normal to run buttons of main window. --- fetchmailconf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fetchmailconf.py b/fetchmailconf.py index e856d9d0..2d7ef19d 100755 --- a/fetchmailconf.py +++ b/fetchmailconf.py @@ -2006,13 +2006,13 @@ whether to use POP or IMAP, and so forth). Use `Run fetchmail' to run fetchmail with debugging enabled. This is a good way to test out a new configuration. """, width=600).pack(side=TOP) - Button(self, text='Run fetchmail',fg='blue', command=self.test).pack() + Button(self, text='Run fetchmail (verbose)',fg='blue', command=self.test).pack() Message(self, text=""" Use `Run fetchmail' to run fetchmail in foreground. Progress messages will be shown, but not debug messages. """, width=600).pack(side=TOP) - Button(self, text='Run fetchmail', fg='blue', command=self.run).pack() + Button(self, text='Run fetchmail (normal)', fg='blue', command=self.run).pack() Message(self, text=""" Or you can just select `Quit' to exit the launcher now. -- cgit v1.2.3