electron/atom/browser/api/atom_api_screen_mac.mm

18 lines
357 B
Text
Raw Normal View History

// Copyright (c) 2017 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
2017-05-24 02:24:56 +00:00
#import "atom/browser/api/atom_api_screen.h"
#import <Cocoa/Cocoa.h>
namespace atom {
namespace api {
int Screen::getMenuBarHeight() {
2017-05-24 02:24:56 +00:00
return [[NSApp mainMenu] menuBarHeight];
}
2017-05-24 02:24:56 +00:00
}// namespace api
}// namespace atom