From d7397739086b8725293b65ebc6d689dd09ce4f26 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sun, 11 Jul 2010 07:39:19 +0200 Subject: [PATCH] GUI: display config file location in about dialogue --- pyfpdb/fpdb.pyw | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index d97a0f75..1fa23528 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -235,6 +235,7 @@ class fpdb: dia.set_comments("") dia.set_license("This program is licensed under the AGPL3, see agpl-3.0.txt in the fpdb installation directory") dia.set_website("http://fpdb.sourceforge.net/") + dia.set_authors(['Steffen', 'Eratosthenes', 'Carl Gherardi', 'Eric Blade', '_mt', 'sqlcoder', 'Bostik', 'and others']) dia.set_program_name("Free Poker Database (FPDB)") @@ -261,11 +262,17 @@ class fpdb: view.modify_font(pango.FontDescription('monospace 10')) view.show() dia.vbox.pack_end(view, True, True, 2) - l = gtk.Label('Version Information:') + + l = gtk.Label("Your config file is: "+self.config.file) l.set_alignment(0.5, 0.5) l.show() dia.vbox.pack_end(l, True, True, 2) + l = gtk.Label('Version Information:') + l.set_alignment(0.5, 0.5) + l.show() + dia.vbox.pack_end(l, True, True, 2) + dia.run() dia.destroy() log.debug("Threads: ")