Don't add the view again if it's one that has already been added, this causes the application to poll unneccessarily

This commit is contained in:
Gregory John Casamento 2024-02-15 03:36:43 -05:00
parent e19038665b
commit db773ae9ec

View file

@ -3570,11 +3570,11 @@ static NSDictionary *titleTextAttributes[3] = {nil, nil, nil};
// Store the object...
[paths setObject: view forKey: path];
[tableView addSubview: view];
}
// Place the view...
[view setFrame: drawingRect];
[tableView addSubview: view];
}
}