custom window level as string

This commit is contained in:
adammeyer 2016-09-21 22:49:06 -04:00
parent b35bde662a
commit 783d47f78b
7 changed files with 28 additions and 12 deletions

View file

@ -487,7 +487,7 @@ bool Window::IsClosable() {
}
void Window::SetAlwaysOnTop(bool top, mate::Arguments* args) {
int level = 0;
std::string level = "floating";
args->GetNext(&level);
window_->SetAlwaysOnTop(top, level);
}