Skip to content

Commit

Permalink
revert VALIDRECTS for now
Browse files Browse the repository at this point in the history
  • Loading branch information
punker76 committed Jan 26, 2015
1 parent fdeb41e commit 43700e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MahApps.Metro/Microsoft.Windows.Shell/WindowChromeWorker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,8 @@ private IntPtr _HandleNCCalcSize(WM uMsg, IntPtr wParam, IntPtr lParam, out bool
}

handled = true;
return redraw ? new IntPtr((int)WVR.REDRAW | (int)WVR.VALIDRECTS) : IntPtr.Zero;
// revert VALIDRECTS for now
return redraw ? new IntPtr((int)WVR.REDRAW/* | (int)WVR.VALIDRECTS*/) : IntPtr.Zero;
}

private HT _GetHTFromResizeGripDirection(ResizeGripDirection direction)
Expand Down

0 comments on commit 43700e4

Please sign in to comment.