diff options
author | Andrei Karas <akaras@inbox.ru> | 2009-10-29 22:24:25 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2009-10-29 21:44:09 +0100 |
commit | 99a4fe34113ddfe8a820e3992fcb96ca64cdaf50 (patch) | |
tree | 0edc37ced853616733e01299ea16749da95829e1 | |
parent | be6641afee2ee1133436c512039feda28c7c4c00 (diff) | |
download | mana-99a4fe34113ddfe8a820e3992fcb96ca64cdaf50.tar.gz mana-99a4fe34113ddfe8a820e3992fcb96ca64cdaf50.tar.bz2 mana-99a4fe34113ddfe8a820e3992fcb96ca64cdaf50.tar.xz mana-99a4fe34113ddfe8a820e3992fcb96ca64cdaf50.zip |
Fix show cost increase stats in StatusWindow.
Reviewed-by: Thorbjørn Lindeijer <thorbjorn@lindeijer.nl>
-rw-r--r-- | src/gui/statuswindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/statuswindow.cpp b/src/gui/statuswindow.cpp index 81b83fe6..8e31f350 100644 --- a/src/gui/statuswindow.cpp +++ b/src/gui/statuswindow.cpp @@ -475,7 +475,7 @@ DerDisplay::DerDisplay(int id, const std::string &name): ChangeDisplay::ChangeDisplay(int id, const std::string &name): AttrDisplay(id, name), mNeeded(1) { - mPoints = new Label("1"); + mPoints = new Label("1 "); mInc = new Button(_("+"), "inc", this); // Do the layout |