Don't touch window title before an OSC is received.
Fixes the "window title being clobbered" issue raised in issue 137. Signed-off-by: sqweek <sqweek@gmail.com> Closes #380. Closes #137.
This commit is contained in:
@@ -68,7 +68,7 @@ DrawState::DrawState( int s_width, int s_height )
|
||||
}
|
||||
|
||||
Framebuffer::Framebuffer( int s_width, int s_height )
|
||||
: rows( s_height, Row( s_width, 0 ) ), icon_name(), window_title(), bell_count( 0 ), ds( s_width, s_height )
|
||||
: rows( s_height, Row( s_width, 0 ) ), icon_name(), window_title(), bell_count( 0 ), title_initialized( false ), ds( s_width, s_height )
|
||||
{
|
||||
assert( s_height > 0 );
|
||||
assert( s_width > 0 );
|
||||
|
||||
Reference in New Issue
Block a user