diff options
author | darkvater <darkvater@openttd.org> | 2005-01-03 22:04:34 +0000 |
---|---|---|
committer | darkvater <darkvater@openttd.org> | 2005-01-03 22:04:34 +0000 |
commit | 036b043f9fa0e8284b66d1fc64fc5ed71ffe4ef8 (patch) | |
tree | 2ced19c5c047f7220a562c7a22870fbd9593f4cf | |
parent | 784968c028aa66b5b297ed9d969bb23fde18deda (diff) | |
download | openttd-036b043f9fa0e8284b66d1fc64fc5ed71ffe4ef8.tar.xz |
(svn r1357) -Fix: Disabled dropdown menu options are gray again (instead of blue)
-rw-r--r-- | widget.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -443,7 +443,7 @@ static WindowNumber _dropdown_windownum; static byte _dropdown_var1; static byte _dropdown_var2; -static const Widget _dropdown_menu_widgets[] = { +static Widget _dropdown_menu_widgets[] = { { WWT_IMGBTN, RESIZE_NONE, 0, 0, 0, 0, 0, 0x0, STR_NULL}, { WIDGETS_END}, }; @@ -617,6 +617,8 @@ void ShowDropDownMenu(Window *w, const StringID *strings, int selected, int butt } } + _dropdown_menu_widgets[0].color = wi->color; + w2 = AllocateWindow( w->left + wi[-1].left + 1, w->top + wi->bottom + 2, |