зеркало из https://github.com/electron/electron.git
add documentation
This commit is contained in:
Родитель
ae632193c0
Коммит
faf08b2b77
|
@ -1136,10 +1136,10 @@ bool NativeWindowMac::IsEnabled() {
|
|||
}
|
||||
|
||||
void NativeWindowMac::SetEnabled(bool enable) {
|
||||
if (enable == false){
|
||||
[window_ attachedSheet] = nil;
|
||||
if (enable){
|
||||
// TODO(codebytere): figure out how to implement window enabling
|
||||
} else {
|
||||
[window_ beginSheet:window_];
|
||||
[window_ attachedSheet] = nil;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -847,6 +847,12 @@ the supplied bounds.
|
|||
|
||||
Returns [`Rectangle`](structures/rectangle.md)
|
||||
|
||||
### `win.setEnabled(enabled)`
|
||||
|
||||
* `enabled` Boolean
|
||||
|
||||
Disable or enable the window.
|
||||
|
||||
#### `win.setSize(width, height[, animate])`
|
||||
|
||||
* `width` Integer
|
||||
|
|
Загрузка…
Ссылка в новой задаче