From 47205b823edeafafaa1b5d2640d03b8d37dd3a65 Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Sat, 11 May 2002 22:53:56 +0000 Subject: [PATCH] Fixed missing wineconsole notification of title modification. --- server/console.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/console.c b/server/console.c index 5d94d7371de..fac9960643b 100644 --- a/server/console.c +++ b/server/console.c @@ -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) -- 2.11.4.GIT