aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTableStructureLoading.m
diff options
context:
space:
mode:
authorStuart Connolly <stuart02@gmail.com>2014-05-26 23:01:08 +0100
committerStuart Connolly <stuart02@gmail.com>2014-05-26 23:01:08 +0100
commitf25c62d78bbd5d6fbe7a6fac09294317ccd3eeaf (patch)
treef9cdf6b0ef6bdac0ceb25283997aded6cf3e3906 /Source/SPTableStructureLoading.m
parentafadd0273178b5803b11ba69a37b6a1138771216 (diff)
downloadsequelpro-f25c62d78bbd5d6fbe7a6fac09294317ccd3eeaf.tar.gz
sequelpro-f25c62d78bbd5d6fbe7a6fac09294317ccd3eeaf.tar.bz2
sequelpro-f25c62d78bbd5d6fbe7a6fac09294317ccd3eeaf.zip
Add a hidden preference to control the size of the UI's monospaced font.
Diffstat (limited to 'Source/SPTableStructureLoading.m')
-rw-r--r--Source/SPTableStructureLoading.m6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/SPTableStructureLoading.m b/Source/SPTableStructureLoading.m
index 07656155..9e9edd5c 100644
--- a/Source/SPTableStructureLoading.m
+++ b/Source/SPTableStructureLoading.m
@@ -142,8 +142,10 @@
[menuStyle setLineBreakMode:NSLineBreakByTruncatingTail];
NSMutableDictionary *menuAttributes = [NSMutableDictionary dictionaryWithObject:[NSColor lightGrayColor] forKey:NSForegroundColorAttributeName];
-
- [menuAttributes setObject:[prefs boolForKey:SPUseMonospacedFonts] ? [NSFont fontWithName:SPDefaultMonospacedFontName size:[NSFont smallSystemFontSize]] : [NSFont systemFontOfSize:[NSFont smallSystemFontSize]] forKey:NSFontAttributeName];
+
+ CGFloat monospacedFontSize = [prefs floatForKey:SPMonospacedFontSize] > 0 ? [prefs floatForKey:SPMonospacedFontSize] : [NSFont smallSystemFontSize];
+
+ [menuAttributes setObject:[prefs boolForKey:SPUseMonospacedFonts] ? [NSFont fontWithName:SPDefaultMonospacedFontName size:monospacedFontSize] : [NSFont systemFontOfSize:[NSFont smallSystemFontSize]] forKey:NSFontAttributeName];
NSAttributedString *itemString = [[[NSAttributedString alloc] initWithString:defaultEncodingDescription attributes:menuAttributes] autorelease];