Files
transmission/macosx/Toolbar.mm
Dzmitry Neviadomski 37f7f83d4d [macOS] Apply ObjC modernizations once again. (#3358)
This doesn't include designated initializers refactoring.
2022-06-28 23:20:42 -05:00

19 lines
530 B
Plaintext

// This file Copyright © 2007-2022 Transmission authors and contributors.
// It may be used under the MIT (SPDX: MIT) license.
// License text can be found in the licenses/ folder.
#import "Toolbar.h"
@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];
super.visible = visible;
}
@end