(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

This commit is contained in:
rubidium 2012-01-28 20:10:49 +00:00
parent c9a7eb2571
commit 2f49c9af85
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}