aboutsummaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-rw-r--r--Source/TableDocument.m8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/TableDocument.m b/Source/TableDocument.m
index ea071365..ad72d2df 100644
--- a/Source/TableDocument.m
+++ b/Source/TableDocument.m
@@ -1047,6 +1047,8 @@
*
* if contextInfo == removeDatabase -> Remove the selected database
* if contextInfo == addDatabase -> Add a new database
+ * if contextInfo == copyDatabase -> Duplicate the selected database
+ * if contextInfo == renameDatabase -> Rename the selected database
*/
- (void)sheetDidEnd:(id)sheet returnCode:(NSInteger)returnCode contextInfo:(NSString *)contextInfo
{
@@ -3936,6 +3938,12 @@
if (object == databaseNameField) {
[addDatabaseButton setEnabled:([[databaseNameField stringValue] length] > 0)];
}
+ else if (object == databaseCopyNameField) {
+ [copyDatabaseButton setEnabled:([[databaseCopyNameField stringValue] length] > 0)];
+ }
+ else if (object == databaseRenameNameField) {
+ [renameDatabaseButton setEnabled:([[databaseRenameNameField stringValue] length] > 0)];
+ }
else if (object == saveConnectionEncryptString) {
[saveConnectionEncryptString setStringValue:[saveConnectionEncryptString stringValue]];
}