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>
20 lines
406 B
Objective-C
20 lines
406 B
Objective-C
//
|
|
// PreferencesController.h
|
|
// Cog
|
|
//
|
|
// Created by Vincent Spader on 9/4/06.
|
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class PreferencesWindow;
|
|
@interface PreferencesController : NSObject {
|
|
PreferencesWindow *window;
|
|
}
|
|
|
|
- (IBAction)showPreferences:(id)sender;
|
|
- (IBAction)showPathSuggester:(id)sender;
|
|
- (IBAction)showRubberbandSettings:(id)sender;
|
|
|
|
@end
|