When the visualization window is not open, it should not continue to run the scene until the app is quit. Apparently, the windowed mode is really slow on old Intel machines, too. Full screening it is enough to bodge the entire system session until the machine is remotely rebooted. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
20 lines
338 B
Objective-C
20 lines
338 B
Objective-C
//
|
|
// SpectrumWindowController.h
|
|
// Cog
|
|
//
|
|
// Created by Christopher Snowhill on 5/22/22.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "PlaybackController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SpectrumWindowController : NSWindowController <NSWindowDelegate> {
|
|
IBOutlet PlaybackController *playbackController;
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|