Tell child initial window size. Fix combining char order flip

This commit is contained in:
Keith Winstein
2011-02-03 23:28:04 -05:00
parent 2812c7beaf
commit d4be42ac3d
2 changed files with 8 additions and 2 deletions
+2 -2
View File
@@ -186,8 +186,8 @@ Cell *Framebuffer::get_cell( int row, int col )
Cell *Framebuffer::get_combining_cell( void )
{
if ( (ds.get_combining_char_row() >= ds.get_width())
|| (ds.get_combining_char_col() >= ds.get_height()) ) {
if ( (ds.get_combining_char_col() >= ds.get_width())
|| (ds.get_combining_char_row() >= ds.get_height()) ) {
return NULL;
} /* can happen if a resize came in between */