Fixed a bug that sometimes prevented GBS files from being opened

This commit is contained in:
Lior Halphon 2021-08-01 15:11:33 +03:00
parent de500cd397
commit 50bf8c4919
1 changed files with 1 additions and 1 deletions

View File

@ -902,7 +902,7 @@ static unsigned *multiplication_table_for_frequency(unsigned frequency)
{
GB_set_rendering_disabled(&gb, true);
_view = nil;
for (NSView *view in _mainWindow.contentView.subviews) {
for (NSView *view in [_mainWindow.contentView.subviews copy]) {
[view removeFromSuperview];
}
[[NSBundle mainBundle] loadNibNamed:@"GBS" owner:self topLevelObjects:nil];