diff options
author | rowanbeentje <rowan@beent.je> | 2010-07-17 22:19:03 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-07-17 22:19:03 +0000 |
commit | 8a5c8b954e00302cf5de32edcaf12c0b7b3eed82 (patch) | |
tree | 371712798726ca1ba674a77a0e6c9a12e40fff3a /Source/SPTableStructure.h | |
parent | 8f5362b01faf105b6ff8d1cafaccf5a72560d7e9 (diff) | |
download | sequelpro-8a5c8b954e00302cf5de32edcaf12c0b7b3eed82.tar.gz sequelpro-8a5c8b954e00302cf5de32edcaf12c0b7b3eed82.tar.bz2 sequelpro-8a5c8b954e00302cf5de32edcaf12c0b7b3eed82.zip |
Tweak structure view index collapsing:
- Make the minimum index view size a little smaller
- Add a button to reveal the indexes subview when it is collapsed. This button is hidden when te index view is not collapsed.
This addresses Issue #746
Diffstat (limited to 'Source/SPTableStructure.h')
-rw-r--r-- | Source/SPTableStructure.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/SPTableStructure.h b/Source/SPTableStructure.h index 5c50ec85..f81078b1 100644 --- a/Source/SPTableStructure.h +++ b/Source/SPTableStructure.h @@ -51,6 +51,8 @@ IBOutlet id removeIndexButton; IBOutlet id refreshIndexesButton; IBOutlet id indexesTableView; + IBOutlet NSSplitView *tablesIndexesSplitView; + IBOutlet NSButton *indexesShowButton; MCPConnection *mySQLConnection; MCPResult *tableSourceResult; @@ -99,4 +101,7 @@ - (void)startDocumentTaskForTab:(NSNotification *)aNotification; - (void)endDocumentTaskForTab:(NSNotification *)aNotification; +// Split view interaction +- (IBAction)unhideIndexesView:(id)sender; + @end |