Skip to content

Commit

Permalink
Similar change has been given to list.java as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
elsazac committed Jan 10, 2024
1 parent 61e06da commit 6514629
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ void setFont (NSFont font) {
super.setFont (font);
double ascent = font.ascender ();
double descent = -font.descender () + font.leading ();
((NSTableView)view).setRowHeight ((int)Math.ceil (ascent + descent) + 1);
((NSTableView)view).setRowHeight ((int)Math.ceil (ascent + descent) + ((OS.IS_X86_64) ? 1 : 8));
setScrollWidth();
}

Expand Down

0 comments on commit 6514629

Please sign in to comment.