mirror of
https://github.com/electron/electron.git
synced 2026-01-26 15:58:07 -05:00
IsMovable to return true on Linux
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user