Add verbose, and fix cursor movement problem
This commit is contained in:
@@ -155,7 +155,9 @@ namespace Terminal {
|
||||
bool operator==( const DrawState &x ) const
|
||||
{
|
||||
/* XXX other fields not necessary to compare -- for now */
|
||||
return ( width == x.width ) && ( height == x.height ) && ( renditions == x.renditions );
|
||||
return ( width == x.width ) && ( height == x.height ) && ( cursor_col == x.cursor_col )
|
||||
&& ( cursor_row == x.cursor_row ) && ( cursor_visible == x.cursor_visible ) &&
|
||||
( reverse_video == x.reverse_video ) && ( renditions == x.renditions );
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user