diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-04-06 06:11:38 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-04-06 06:11:38 -0600 |
commit | 9e44d5af1d7576b99553305aa7cee53dd0f6ff45 (patch) | |
tree | c6c7607f8dcfe1ac59e1e508b6a661d0b3d1f10e /src/gui/palette.cpp | |
parent | bcc4695387d21f9629ab6f013aadbfe0d238aa6d (diff) | |
download | mana-9e44d5af1d7576b99553305aa7cee53dd0f6ff45.tar.gz mana-9e44d5af1d7576b99553305aa7cee53dd0f6ff45.tar.bz2 mana-9e44d5af1d7576b99553305aa7cee53dd0f6ff45.tar.xz mana-9e44d5af1d7576b99553305aa7cee53dd0f6ff45.zip |
Clean up and expand item equip handling in the GUI
Diffstat (limited to 'src/gui/palette.cpp')
-rw-r--r-- | src/gui/palette.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/palette.cpp b/src/gui/palette.cpp index f226d512..5526e802 100644 --- a/src/gui/palette.cpp +++ b/src/gui/palette.cpp @@ -89,8 +89,8 @@ Palette::Palette() : addColor(HIGHLIGHT, 0xebc873, STATIC, _("Highlight"), 'H'); addColor(TAB_HIGHLIGHT, 0xff0000, PULSE, indent + _("Tab Highlight")); - addColor(SHOP_WARNING, 0x910000, STATIC, indent + - _("Item too expensive")); + addColor(SHOP_WARNING, 0x910000, STATIC, indent + _("Item too expensive")); + addColor(ITEM_EQUIPED, 0x000091, STATIC, indent + _("Item is equiped")); addColor(CHAT, 0x000000, STATIC, _("Chat"), 'C'); addColor(GM, 0xff0000, STATIC, indent + _("GM"), 'G'); |