aboutsummaryrefslogtreecommitdiffstats
path: root/Source/TablesList.m
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2010-01-11 08:02:11 +0000
committerBibiko <bibiko@eva.mpg.de>2010-01-11 08:02:11 +0000
commita9352403c15cadb9b5a26299254d6d74ab3c5860 (patch)
tree1f60cdd8c626dbf0178e5fc495b1a93933a07fd1 /Source/TablesList.m
parentbd1c8a535691781746f1a1ff4ea9d215744061c5 (diff)
downloadsequelpro-a9352403c15cadb9b5a26299254d6d74ab3c5860.tar.gz
sequelpro-a9352403c15cadb9b5a26299254d6d74ab3c5860.tar.bz2
sequelpro-a9352403c15cadb9b5a26299254d6d74ab3c5860.zip
• fixed showing the table list's search bar view by setting its initial splitview height to 1 instead of 0 to ensure that a next connection window which has more than 20 tables is showing the search bar as well
Diffstat (limited to 'Source/TablesList.m')
-rw-r--r--Source/TablesList.m4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/TablesList.m b/Source/TablesList.m
index 2846a85a..b5dbc110 100644
--- a/Source/TablesList.m
+++ b/Source/TablesList.m
@@ -1732,7 +1732,9 @@
// Start the table filter list collapsed
if ([tableListFilterSplitView collapsibleSubview]) {
[tableListFilterSplitView setValue:[NSNumber numberWithFloat:[tableListFilterSplitView collapsibleSubview].frame.size.height] forKey:@"uncollapsedSize"];
- [[tableListFilterSplitView collapsibleSubview] setFrameSize:NSMakeSize([tableListFilterSplitView collapsibleSubview].frame.size.width, 0)];
+ // Set search bar view to the height of 1 instead of 0 to ensure that the view will be visible
+ // after opening a next connection window which has more than 20 tables
+ [[tableListFilterSplitView collapsibleSubview] setFrameSize:NSMakeSize([tableListFilterSplitView collapsibleSubview].frame.size.width, 1)];
[tableListFilterSplitView setCollapsibleSubviewCollapsed:YES];
}