Use the Information color alias for auto info boxes

This commit is contained in:
Maxime Coste 2013-08-29 13:50:24 +01:00
parent 1d790541f5
commit 2125d95076

View File

@ -37,7 +37,7 @@ bool show_auto_info_ifn(const String& info, const Context& context)
{
if (not context.options()["autoinfo"].get<bool>() or not context.has_ui())
return false;
ColorPair col{ Colors::Black, Colors::Yellow };
ColorPair col = get_color("Information");
DisplayCoord pos = context.window().dimensions();
pos.column -= 1;
context.ui().info_show(info, pos , col, MenuStyle::Inline);