2023-11-01 21:11:11 +00:00
|
|
|
// This file Copyright © Transmission authors and contributors.
|
2022-06-24 05:26:36 +00:00
|
|
|
// It may be used under the MIT (SPDX: MIT) license.
|
|
|
|
// License text can be found in the licenses/ folder.
|
|
|
|
|
|
|
|
#import "Toolbar.h"
|
|
|
|
|
2023-02-06 18:54:38 +00:00
|
|
|
@interface Toolbar ()
|
|
|
|
@property(nonatomic) BOOL isRunningCustomizationPalette;
|
|
|
|
@end
|
|
|
|
|
2022-06-24 05:26:36 +00:00
|
|
|
@implementation Toolbar
|
|
|
|
|
|
|
|
- (void)setVisible:(BOOL)visible
|
|
|
|
{
|
|
|
|
//we need to redraw the main window after each change
|
|
|
|
//otherwise we get strange drawing issues, leading to a potential crash
|
|
|
|
[NSNotificationCenter.defaultCenter postNotificationName:@"ToolbarDidChange" object:nil];
|
|
|
|
|
2022-06-29 04:20:42 +00:00
|
|
|
super.visible = visible;
|
2022-06-24 05:26:36 +00:00
|
|
|
}
|
|
|
|
|
2023-02-06 18:54:38 +00:00
|
|
|
- (void)runCustomizationPalette:(nullable id)sender
|
|
|
|
{
|
|
|
|
_isRunningCustomizationPalette = YES;
|
|
|
|
[super runCustomizationPalette:sender];
|
|
|
|
_isRunningCustomizationPalette = NO;
|
|
|
|
}
|
|
|
|
|
2022-06-24 05:26:36 +00:00
|
|
|
@end
|