rssguard/src/librssguard/miscellaneous/disablewindowtabbing.mm
2019-06-10 09:54:18 +02:00

11 lines
354 B
Text

#import <AppKit/AppKit.h>
// Disables auto window tabbing where supported, otherwise a no-op.
// See http://lists.qt-project.org/pipermail/interest/2016-September/024488.html
void disableWindowTabbing()
{
//if ([NSWindow respondsToSelector:@selector(allowsAutomaticWindowTabbing)]) {
// NSWindow.allowsAutomaticWindowTabbing = NO;
//}
}