diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-08-10 20:54:18 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-08-10 20:54:18 -0600 |
commit | bb9380e68c48f901353ac22042105243c8edd250 (patch) | |
tree | 8902d9b1e58bcc272dc175c09e3da6c45dca3ec3 | |
parent | 3a23f6a771142b6dc3df361b88621eec31d4e40f (diff) | |
download | mana-bb9380e68c48f901353ac22042105243c8edd250.tar.gz mana-bb9380e68c48f901353ac22042105243c8edd250.tar.bz2 mana-bb9380e68c48f901353ac22042105243c8edd250.tar.xz mana-bb9380e68c48f901353ac22042105243c8edd250.zip |
Fix SkillDialog's layout for points to always show
-rw-r--r-- | src/gui/skilldialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/skilldialog.cpp b/src/gui/skilldialog.cpp index 01b6e5ae..f6ab226a 100644 --- a/src/gui/skilldialog.cpp +++ b/src/gui/skilldialog.cpp @@ -95,7 +95,7 @@ SkillDialog::SkillDialog(): mPointsLabel = new Label("0"); place(0, 0, mTabs, 5, 5); - place(0, 5, mPointsLabel); + place(0, 5, mPointsLabel, 2); setLocationRelativeTo(getParent()); loadWindowState(); |