summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/chardump.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-19 22:30:42 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-19 22:30:42 +0000
commitd67f41ebf91d23eabe1640a2910cdae40358b77c (patch)
treeba68939920e514731ce118cf697e51357480d140 /crawl-ref/source/chardump.cc
parent55901dbf5e38817170440cae2f80df7b468d52f5 (diff)
downloadcrawl-ref-d67f41ebf91d23eabe1640a2910cdae40358b77c.tar.gz
crawl-ref-d67f41ebf91d23eabe1640a2910cdae40358b77c.zip
Menus are now tagged. Menu colours now only apply to a menu with a matching
tag, unless the menu colour tag is empty or "any". Menu colours are specified as tag:colour:pattern, where the "tag:" part is optional (default is empty tag, i.e., all menus.) The following menu tags exist: ability, description, equip, help, inventory, notes, resists, spell, stash. Default .crawlrc should probably be changed (and the docs, too...) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2493 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/chardump.cc')
-rw-r--r--crawl-ref/source/chardump.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/chardump.cc b/crawl-ref/source/chardump.cc
index 08cdfd212b..5af5ea01d2 100644
--- a/crawl-ref/source/chardump.cc
+++ b/crawl-ref/source/chardump.cc
@@ -1169,6 +1169,7 @@ static bool write_dump(
void display_notes()
{
Menu scr;
+ scr.set_tag("notes");
scr.set_title( new MenuEntry("Turn | Place | Note"));
for ( unsigned int i = 0; i < note_list.size(); ++i )
{
@@ -1201,6 +1202,7 @@ void resists_screen()
textcolor(LIGHTGREY);
formatted_scroller scr;
+ scr.set_tag("resists");
for ( unsigned i = 0; i < vfs.size(); ++i )
scr.add_item_formatted_string(vfs[i]);