mirror of
https://github.com/ksherlock/ample.git
synced 2025-02-21 07:29:14 +00:00
when option key pressed. also adjust log window to use monospace font, show error/signal in red, and don't mention a successful exit. tweaks to file handling/task complete so task complete logic is delayed until file handle is drained.
18 lines
324 B
Objective-C
18 lines
324 B
Objective-C
//
|
|
// LaunchWindowController.h
|
|
// Ample
|
|
//
|
|
// Created by Kelvin Sherlock on 8/29/2020.
|
|
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface LaunchWindowController : NSWindowController <NSBrowserDelegate, NSMenuDelegate>
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|