IsMovable to return true on Linux
This commit is contained in:
parent
c3049e1e99
commit
0a79204abb
1 changed files with 4 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue