aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPFieldEditorController.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/SPFieldEditorController.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/SPFieldEditorController.m')
-rw-r--r--Source/SPFieldEditorController.m6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/SPFieldEditorController.m b/Source/SPFieldEditorController.m
index 6e1e1fd5..9c2de5fc 100644
--- a/Source/SPFieldEditorController.m
+++ b/Source/SPFieldEditorController.m
@@ -232,6 +232,8 @@
if ([fieldEncoding length])
[label appendString:fieldEncoding];
+ CGFloat monospacedFontSize = [prefs floatForKey:SPMonospacedFontSize] > 0 ? [prefs floatForKey:SPMonospacedFontSize] : [NSFont smallSystemFontSize];
+
if ([fieldType length] && [[fieldType uppercaseString] isEqualToString:@"BIT"]) {
sheetEditData = [(NSString*)data retain];
@@ -284,7 +286,7 @@
#endif
[editTextView setFont:
#ifndef SP_CODA
- ([prefs boolForKey:SPUseMonospacedFonts]) ? [NSFont fontWithName:SPDefaultMonospacedFontName size:[NSFont smallSystemFontSize]] :
+ [prefs boolForKey:SPUseMonospacedFonts] ? [NSFont fontWithName:SPDefaultMonospacedFontName size:monospacedFontSize] :
#endif
[NSFont systemFontOfSize:[NSFont smallSystemFontSize]]];
#ifndef SP_CODA
@@ -302,7 +304,7 @@
#endif
];
- [hexTextView setFont:[NSFont fontWithName:SPDefaultMonospacedFontName size:[NSFont smallSystemFontSize]]];
+ [hexTextView setFont:[NSFont fontWithName:SPDefaultMonospacedFontName size:monospacedFontSize]];
[editSheetFieldName setStringValue:[NSString stringWithFormat:@"%@: %@", NSLocalizedString(@"Field", @"Field"), label]];