And disable it by default in new installations, otherwise leave the setting alone. The disablement setting is shared with the engine setting, so the default should not really change anything, except for new installs. Also, the time/pitch shifting dialog disables itself and displays an obvious notice button, which opens the Rubber Band settings. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
27 lines
482 B
Objective-C
27 lines
482 B
Objective-C
//
|
|
// RubberbandEngineTransformer.h
|
|
// Preferences
|
|
//
|
|
// Created by Christopher Snowhill on 2/11/25.
|
|
//
|
|
|
|
#ifndef RubberbandEngineTransformer_h
|
|
#define RubberbandEngineTransformer_h
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RubberbandEngineEnabledTransformer : NSValueTransformer
|
|
|
|
@end
|
|
|
|
@interface RubberbandEngineHiddenTransformer : NSValueTransformer
|
|
|
|
@end
|
|
|
|
@interface RubberbandEngineR3Transformer : NSValueTransformer
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
#endif /* EngineTransformer_h */
|