summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc10
1 files changed, 4 insertions, 6 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index 0fd8bb5d03..dc6237f459 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -628,12 +628,10 @@ void full_describe_view()
#ifdef USE_TILE
// Highlight selected monster on the screen.
const coord_def gc(m->pos());
- tiles.place_cursor(CURSOR_MOUSE, gc);
- // No terse description for now, could be nice though. (jpeg)
- // (They disappear right away.)
- //const std::string &desc = get_terse_square_desc(gc);
- //tiles.add_text_tag(TAG_CELL_DESC, desc, gc);
- //tiles.redraw();
+ tiles.place_cursor(CURSOR_TUTORIAL, gc);
+ const std::string &desc = get_terse_square_desc(gc);
+ tiles.clear_text_tags(TAG_TUTORIAL);
+ tiles.add_text_tag(TAG_TUTORIAL, desc, gc);
#endif
mesclr();
_describe_monster( m );