mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-12-23 19:29:18 +00:00
abort editing virtual machine name if any action is chosen
This commit is contained in:
parent
f1a2620576
commit
39a3b75024
@ -217,6 +217,7 @@ Copy path!
|
||||
|
||||
- (IBAction) newVirtualMachine: (id) sender
|
||||
{
|
||||
[vmList abortEditing];
|
||||
NSSavePanel *save = [NSSavePanel savePanel];
|
||||
[save setMessage: @"New SheepShaver Virtual Machine:"];
|
||||
[save setRequiredFileType: @"sheepvm"];
|
||||
@ -250,6 +251,7 @@ Copy path!
|
||||
|
||||
- (IBAction) importVirtualMachine: (id) sender
|
||||
{
|
||||
[vmList abortEditing];
|
||||
NSOpenPanel *open = [NSOpenPanel openPanel];
|
||||
[open setMessage:@"Import SheepShaver Virtual Machine:"];
|
||||
[open setResolvesAliases:YES];
|
||||
@ -276,6 +278,7 @@ Copy path!
|
||||
|
||||
- (IBAction) editVirtualMachineSettings: (id) sender
|
||||
{
|
||||
[vmList abortEditing];
|
||||
int selectedRow = [vmList selectedRow];
|
||||
if (selectedRow >= 0) {
|
||||
NSString *path = [vmArray objectAtIndex:selectedRow];
|
||||
@ -297,6 +300,7 @@ Copy path!
|
||||
|
||||
- (IBAction) launchVirtualMachine: (id) sender
|
||||
{
|
||||
[vmList abortEditing];
|
||||
int selectedRow = [vmList selectedRow];
|
||||
if (selectedRow >= 0) {
|
||||
NSString *path = [vmArray objectAtIndex:selectedRow];
|
||||
@ -336,6 +340,7 @@ Copy path!
|
||||
|
||||
- (IBAction) deleteVirtualMachine: (id) sender
|
||||
{
|
||||
[vmList abortEditing];
|
||||
int selectedRow = [vmList selectedRow];
|
||||
if (selectedRow >= 0) {
|
||||
NSAlert *alert = [[[NSAlert alloc] init] autorelease];
|
||||
@ -361,6 +366,7 @@ Copy path!
|
||||
|
||||
- (IBAction) revealVirtualMachineInFinder: (id) sender
|
||||
{
|
||||
[vmList abortEditing];
|
||||
int selectedRow = [vmList selectedRow];
|
||||
if (selectedRow >= 0) {
|
||||
NSString *path = [vmArray objectAtIndex:selectedRow];
|
||||
|
Loading…
Reference in New Issue
Block a user