aboutsummaryrefslogtreecommitdiffstats
path: root/Source/TablesList.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2009-11-17 22:17:50 +0000
committerstuconnolly <stuart02@gmail.com>2009-11-17 22:17:50 +0000
commit3eb56d9c389b9915a47d59f77ed1316ebbbc1544 (patch)
treecb3b6ec08724f154c297ec062cd891f15ac205a2 /Source/TablesList.m
parent79a8715c6860dd51bf43daf0210d0c84684632fa (diff)
downloadsequelpro-3eb56d9c389b9915a47d59f77ed1316ebbbc1544.tar.gz
sequelpro-3eb56d9c389b9915a47d59f77ed1316ebbbc1544.tar.bz2
sequelpro-3eb56d9c389b9915a47d59f77ed1316ebbbc1544.zip
Change the placeholder value of a few search fields to simply 'Filter' to make them look less cramped.
Diffstat (limited to 'Source/TablesList.m')
-rw-r--r--Source/TablesList.m4
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/TablesList.m b/Source/TablesList.m
index 72f7afce..3a7dbacf 100644
--- a/Source/TablesList.m
+++ b/Source/TablesList.m
@@ -238,9 +238,7 @@
// Set the filter placeholder text
if ([tableDocumentInstance database]) {
- if ([theResult numOfRows]) [[listFilterField cell] setPlaceholderString:NSLocalizedString(@"Filter tables, views, procs & funcs", @"Filter placeholder when all tables types are present")];
- else if (tableListContainsViews) [[listFilterField cell] setPlaceholderString:NSLocalizedString(@"Filter tables and views", @"Filter placeholder when tables and views are present")];
- else [[listFilterField cell] setPlaceholderString:NSLocalizedString(@"Filter tables", @"Filter placeholder when only tables are present")];
+ [[listFilterField cell] setPlaceholderString:NSLocalizedString(@"Filter", @"Filter placeholder")];
}
if (previousSelectedTable) [previousSelectedTable release];