diff options
Diffstat (limited to 'TableSource.m')
-rw-r--r-- | TableSource.m | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/TableSource.m b/TableSource.m index 0d9e2bf4..caeb91fc 100644 --- a/TableSource.m +++ b/TableSource.m @@ -495,11 +495,19 @@ sets the connection (received from TableDocument) and makes things that have to if ( [prefs boolForKey:@"useMonospacedFonts"] ) { [[indexColumn dataCell] setFont:[NSFont fontWithName:@"Monaco" size:10]]; } + else + { + [[indexColumn dataCell] setFont:[NSFont systemFontOfSize:[NSFont smallSystemFontSize]]]; + } } while ( (fieldColumn = [fieldColumnsEnumerator nextObject]) ) { if ( [prefs boolForKey:@"useMonospacedFonts"] ) { [[fieldColumn dataCell] setFont:[NSFont fontWithName:@"Monaco" size:[NSFont smallSystemFontSize]]]; } + else + { + [[fieldColumn dataCell] setFont:[NSFont systemFontOfSize:[NSFont smallSystemFontSize]]]; + } } } |