Skip to content
Snippets Groups Projects
Commit 0c6b1d36 authored by David's avatar David
Browse files

macosx: Improve UI if users cancels dialogs

This deletes previous output if the section is cancelled.

refs #20835
parent a64f8c28
No related branches found
No related tags found
No related merge requests found
......@@ -395,6 +395,21 @@
[_okButton setTitle:_NS("Stream")];
}
- (void)resetDestination
{
[self setOutputDestination:@""];
// File panel
[[_fileDestinationFileName animator] setHidden: YES];
[[_fileDestinationFileNameStub animator] setHidden: NO];
// Stream panel
[_streamDestinationURLLabel setStringValue:_NS("Select Streaming Method")];
b_streaming = NO;
[self updateOKButton];
}
- (IBAction)cancelDestination:(id)sender
{
if ([_streamDestinationView superview] != nil)
......@@ -405,7 +420,8 @@
[_destinationCancelBtn setHidden:YES];
[[_destinationFileButton animator] setHidden: NO];
[[_destinationStreamButton animator] setHidden: NO];
b_streaming = NO;
[self resetDestination];
}
- (IBAction)browseFileDestination:(id)sender
......@@ -421,11 +437,8 @@
[_fileDestinationFileName setStringValue: [[NSFileManager defaultManager] displayNameAtPath:_outputDestination]];
[[_fileDestinationFileNameStub animator] setHidden: YES];
[[_fileDestinationFileName animator] setHidden: NO];
} else {
[self setOutputDestination:@""];
[[_fileDestinationFileName animator] setHidden: YES];
[[_fileDestinationFileNameStub animator] setHidden: NO];
}
[self updateOKButton];
}];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment