Allow custom window level when sending window to top

This commit is contained in:
adammeyer 2016-09-21 13:35:59 -04:00
parent 805ce0dee9
commit fbb3a288ec
7 changed files with 15 additions and 10 deletions

View file

@ -682,8 +682,8 @@ bool NativeWindowViews::IsClosable() {
#endif
}
void NativeWindowViews::SetAlwaysOnTop(bool top) {
window_->SetAlwaysOnTop(top);
void NativeWindowViews::SetAlwaysOnTop(bool top, int level) {
window_->SetAlwaysOnTop(top, level);
}
bool NativeWindowViews::IsAlwaysOnTop() {