diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-05-10 12:32:05 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-05-10 12:32:05 -0600 |
commit | 99d1fe7eab7b9b8e970be7ce2ae11d0533526ad0 (patch) | |
tree | 3dd50a449f0f12a6b33954cb98dc3d59de8ad85f /src/gui/palette.cpp | |
parent | 4fbc74784120976729f8409872235224c36bdaf3 (diff) | |
download | mana-99d1fe7eab7b9b8e970be7ce2ae11d0533526ad0.tar.gz mana-99d1fe7eab7b9b8e970be7ce2ae11d0533526ad0.tar.bz2 mana-99d1fe7eab7b9b8e970be7ce2ae11d0533526ad0.tar.xz mana-99d1fe7eab7b9b8e970be7ce2ae11d0533526ad0.zip |
Fix default party color
Also reset name color for speech bubbles back to where it was.
Diffstat (limited to 'src/gui/palette.cpp')
-rw-r--r-- | src/gui/palette.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/palette.cpp b/src/gui/palette.cpp index f46eeb92..4d1233e8 100644 --- a/src/gui/palette.cpp +++ b/src/gui/palette.cpp @@ -95,7 +95,7 @@ Palette::Palette() : addColor(PLAYER, 0x1fa052, STATIC, indent + _("Player"), 'Y'); addColor(WHISPER, 0x0000ff, STATIC, indent + _("Whisper"), 'W'); addColor(IS, 0xa08527, STATIC, indent + _("Is"), 'I'); - addColor(PARTY, 0xff00d8, STATIC, indent + _("Party"), 'P'); + addColor(PARTY, 0xf48055, STATIC, indent + _("Party"), 'P'); addColor(SERVER, 0x8415e2, STATIC, indent + _("Server"), 'S'); addColor(LOGGER, 0x919191, STATIC, indent + _("Logger"), 'L'); addColor(HYPERLINK, 0xe50d0d, STATIC, indent + _("Hyperlink"), '<'); |