Edits suggested by @fredkiefer during review

This commit is contained in:
Gregory John Casamento 2024-06-16 07:25:44 -04:00
parent 1d6a850081
commit a815ad5bb8
2 changed files with 3 additions and 3 deletions

View file

@ -37,7 +37,7 @@
2024-05-26 Fred Kiefer <FredKiefer@gmx.de>
* ChangeLog: Update for new release
* ChangeLog: Update for new release
* ANNOUNCE:
* NEWS:
* Documentation/news.texi: Update of release notes for 0.31.0.

View file

@ -3667,8 +3667,8 @@ static NSDictionary *titleTextAttributes[3] = {nil, nil, nil};
makeIfNecessary: YES];
// If the view is already part of the table, don't re-add it...
if ([[tableView subviews] containsObject: rowView] == NO
&& rowView != nil)
if (rowView != nil
&& [[tableView subviews] containsObject: rowView] == NO)
{
NSRect cellFrame = [tableView frameOfCellAtColumn: 0
row: rowIndex];