IsMovable to return true on Linux

This commit is contained in:
evgenyzinoviev 2016-01-19 16:43:52 +01:00
parent c3049e1e99
commit 0a79204abb

View file

@ -475,7 +475,11 @@ void NativeWindowViews::SetMovable(bool movable) {
}
bool NativeWindowViews::IsMovable() {
#if defined(OS_WIN)
return movable_;
#elif defined(USE_X11)
return true;
#endif
}
void NativeWindowViews::SetMinimizable(bool minimizable) {