win: Disable the LegacyRenderWidgetHostHWND, fixes #506.

This commit is contained in:
Cheng Zhao 2014-08-05 18:49:55 +08:00
parent a8cd101ff5
commit cbb14f5ca2

View file

@ -74,6 +74,13 @@ void AtomMainDelegate::PreSandboxStartup() {
// Add a flag to mark the start of switches added by atom-shell.
command_line->AppendSwitch("atom-shell-switches-start");
#if defined(OS_WIN)
// Disable the LegacyRenderWidgetHostHWND, it made frameless windows unable
// to move and resize. We may consider enabling it again after upgraded to
// Chrome 38, which should have fixed the problem.
command_line->AppendSwitch(switches::kDisableLegacyIntermediateWindow);
#endif
// Disable renderer sandbox for most of node's functions.
command_line->AppendSwitch(switches::kNoSandbox);