Don't attempt to redraw a parent that doesn't exist yet.

pull/3/head
Jonathan Moore Liles 2008-04-24 02:08:23 -05:00
parent ffd4dc26a8
commit dfe953c6df
1 changed files with 2 additions and 1 deletions

View File

@ -271,7 +271,8 @@ Track::resize ( void )
else
controls->show();
parent()->redraw();
if ( parent() )
parent()->redraw();
}
void