From 7f2f6301864b96141a7b1b716140d3134b5d4e93 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sat, 17 Jul 2010 03:09:55 +0200 Subject: [PATCH] GUI: add some warnings and further info to HUD configurator --- pyfpdb/fpdb.pyw | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index d2f06f35..b122d86e 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -408,7 +408,19 @@ class fpdb: (gtk.STOCK_SAVE, gtk.RESPONSE_ACCEPT, gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT)) - label=gtk.Label("Please choose the stats you wish to use") + label=gtk.Label("Please choose the stats you wish to use in the below table.") + diaHudTable.vbox.add(label) + label.show() + + label=gtk.Label("Note that you may not select any stat more than once or it will crash.") + diaHudTable.vbox.add(label) + label.show() + + label=gtk.Label("It is not currently possible to select \"empty\" or anything else to that end.") + diaHudTable.vbox.add(label) + label.show() + + label=gtk.Label("To configure things like colouring you will still have to manually edit your HUD_config.xml.") diaHudTable.vbox.add(label) label.show()