Browse Source

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

tags/non-daw-v1.1.0
Jonathan Moore Liles 17 years ago
parent
commit
dfe953c6df
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      Timeline/Track.C

+ 2
- 1
Timeline/Track.C View File

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

parent()->redraw();
if ( parent() )
parent()->redraw();
}

void


Loading…
Cancel
Save