From 2f49c9af85ffffc4c875ffba9b0e308626d72f06 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 28 Jan 2012 20:10:49 +0000 Subject: [PATCH] (svn r23867) -Fix [FS#5020]: make the colour of the dropdown items for opening the vehicle list for which the company has no vehicles looking less horrid --- src/toolbar_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/toolbar_gui.cpp b/src/toolbar_gui.cpp index 60302e6952..a9aae0171b 100644 --- a/src/toolbar_gui.cpp +++ b/src/toolbar_gui.cpp @@ -146,7 +146,7 @@ public: SetDParam(1, company); TextColour col; if (this->greyed) { - col = TC_GREY; + col = (sel ? TC_SILVER : TC_GREY) | TC_NO_SHADE; } else { col = sel ? TC_WHITE : TC_BLACK; }