This commit is contained in:
Shelley Vohr 2018-02-06 08:28:41 -05:00
Родитель ae632193c0
Коммит faf08b2b77
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F13993A75599653C
2 изменённых файлов: 9 добавлений и 3 удалений

Просмотреть файл

@ -1136,10 +1136,10 @@ bool NativeWindowMac::IsEnabled() {
} }
void NativeWindowMac::SetEnabled(bool enable) { void NativeWindowMac::SetEnabled(bool enable) {
if (enable == false){ if (enable){
[window_ attachedSheet] = nil; // TODO(codebytere): figure out how to implement window enabling
} else { } else {
[window_ beginSheet:window_]; [window_ attachedSheet] = nil;
} }
} }

Просмотреть файл

@ -847,6 +847,12 @@ the supplied bounds.
Returns [`Rectangle`](structures/rectangle.md) Returns [`Rectangle`](structures/rectangle.md)
### `win.setEnabled(enabled)`
* `enabled` Boolean
Disable or enable the window.
#### `win.setSize(width, height[, animate])` #### `win.setSize(width, height[, animate])`
* `width` Integer * `width` Integer