mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
win: Use system's menu bar color.
This commit is contained in:
@@ -12,6 +12,10 @@
|
||||
#include "ui/views/controls/button/menu_button.h"
|
||||
#include "ui/views/layout/box_layout.h"
|
||||
|
||||
#if defined(OS_WIN)
|
||||
#include "ui/gfx/color_utils.h"
|
||||
#endif
|
||||
|
||||
namespace atom {
|
||||
|
||||
namespace {
|
||||
@@ -32,7 +36,13 @@ base::string16 FilterMenuButtonLabel(const base::string16& label) {
|
||||
|
||||
MenuBar::MenuBar()
|
||||
: menu_model_(NULL) {
|
||||
set_background(views::Background::CreateSolidBackground(kDefaultColor));
|
||||
#if defined(OS_WIN)
|
||||
SkColor background_color = color_utils::GetSysSkColor(COLOR_MENUBAR);
|
||||
#else
|
||||
SkColor background_color = kDefaultColor;
|
||||
#endif
|
||||
set_background(views::Background::CreateSolidBackground(background_color));
|
||||
|
||||
SetLayoutManager(new views::BoxLayout(
|
||||
views::BoxLayout::kHorizontal, 0, 0, 0));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user