Fixed missing wineconsole notification of title modification.

This commit is contained in:
Eric Pouech 2002-05-11 22:53:56 +00:00 committed by Alexandre Julliard
parent ff60a9a27b
commit 47205b823e

View file

@ -532,6 +532,8 @@ static int set_console_input_info( const struct set_console_input_info_request *
new_title[len / sizeof(WCHAR)] = 0;
if (console->title) free( console->title );
console->title = new_title;
evt.event = CONSOLE_RENDERER_TITLE_EVENT;
console_input_events_append( console->evt, &evt );
}
}
if (req->mask & SET_CONSOLE_INPUT_INFO_HISTORY_MODE)