summaryrefslogtreecommitdiff
path: root/src/gui/itempopup.h
diff options
context:
space:
mode:
authorIra Rice <irarice@gmail.com>2009-01-26 11:38:12 -0700
committerIra Rice <irarice@gmail.com>2009-01-26 11:38:12 -0700
commita1d19e32e1206e406409ca68db6f344535e16519 (patch)
treea9502376d859148a892b24ed8fa67990f1ac8a12 /src/gui/itempopup.h
parent7a618a7f4f7c2efe2a6973cc37bc8283025e4782 (diff)
downloadmana-client-a1d19e32e1206e406409ca68db6f344535e16519.tar.gz
mana-client-a1d19e32e1206e406409ca68db6f344535e16519.tar.bz2
mana-client-a1d19e32e1206e406409ca68db6f344535e16519.tar.xz
mana-client-a1d19e32e1206e406409ca68db6f344535e16519.zip
Modified item popups to show the weight of the item as well. TODO:
modify itemdb to pull the item weight information from the server instead of the client, so as to always have the server and client in sync. Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui/itempopup.h')
-rw-r--r--src/gui/itempopup.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/itempopup.h b/src/gui/itempopup.h
index 8ae2c98f..0c729231 100644
--- a/src/gui/itempopup.h
+++ b/src/gui/itempopup.h
@@ -42,8 +42,10 @@ class ItemPopup : public Window
gcn::Label *mItemName;
TextBox *mItemDesc;
TextBox *mItemEffect;
+ TextBox *mItemWeight;
ScrollArea *mItemDescScroll;
ScrollArea *mItemEffectScroll;
+ ScrollArea *mItemWeightScroll;
};
#endif // ITEMPOPUP_H__