aboutsummaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authordmoagx <post@wickenrode.com>2010-09-12 23:16:18 +0000
committerdmoagx <post@wickenrode.com>2010-09-12 23:16:18 +0000
commit558a632917cd14149c433dad7399692ab8b5cbf7 (patch)
tree5c57547ca54d5097199fca0617c0ea7c77191096 /Source
parent7240c009185f25fde04ef338b3a2fc0bcd412dfc (diff)
downloadsequelpro-558a632917cd14149c433dad7399692ab8b5cbf7.tar.gz
sequelpro-558a632917cd14149c433dad7399692ab8b5cbf7.tar.bz2
sequelpro-558a632917cd14149c433dad7399692ab8b5cbf7.zip
* Fix string width as reported by Alexander Vasiliev (ru)
* Make the table status tab date formatter use medium style or the string would be too large at smallest window width
Diffstat (limited to 'Source')
-rw-r--r--Source/SPExtendedTableInfo.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPExtendedTableInfo.m b/Source/SPExtendedTableInfo.m
index 186c4c25..64e9357e 100644
--- a/Source/SPExtendedTableInfo.m
+++ b/Source/SPExtendedTableInfo.m
@@ -580,7 +580,7 @@
[dateFormatter setFormatterBehavior:NSDateFormatterBehavior10_4];
- [dateFormatter setDateStyle:NSDateFormatterLongStyle];
+ [dateFormatter setDateStyle:NSDateFormatterMediumStyle];
[dateFormatter setTimeStyle:NSDateFormatterMediumStyle];
value = [dateFormatter stringFromDate:[NSDate dateWithNaturalLanguageString:value]];