diff options
author | Brett Nash <nash@nash.id.au> | 2010-03-25 07:58:40 +0000 |
---|---|---|
committer | Brett Nash <nash@nash.id.au> | 2010-03-25 07:58:40 +0000 |
commit | 89d5fc0748ceee70db46b40357bf2f9e130d64ec (patch) | |
tree | 639242b72a74d5086e05cf547e9f205539aba342 | |
parent | 596e0cfe2480e5146d0a71b9a3dc17726cd38982 (diff) |
Print out the weights in the list.
SVN revision: 47442
-rw-r--r-- | src/bin/ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/ui.c b/src/bin/ui.c index d524021..d89a961 100644 --- a/src/bin/ui.c +++ b/src/bin/ui.c | |||
@@ -519,7 +519,7 @@ _ui_setup(void) | |||
519 | 519 | ||
520 | mi = l->data; | 520 | mi = l->data; |
521 | if (i > 0) | 521 | if (i > 0) |
522 | printf("%3i - %s\n", i, mi->text); | 522 | printf("%3i - %s (Weight %0.2lf)\n", i, mi->text, weights[i]); |
523 | } | 523 | } |
524 | } | 524 | } |
525 | else | 525 | else |