(boolean isFullSizeContentView)
| 127 | } |
| 128 | |
| 129 | @NotNull @Contract("_ -> this") |
| 130 | public WindowMac setFullSizeContentView(boolean isFullSizeContentView) { |
| 131 | assert _onUIThread() : "Should be run on UI thread"; |
| 132 | _nSetFullSizeContentView(isFullSizeContentView); |
| 133 | accept(new EventWindowResize(this)); |
| 134 | return this; |
| 135 | } |
| 136 | |
| 137 | @NotNull @Contract("_, -> this") |
| 138 | public WindowMac setTitlebarStyle(WindowMacTitlebarStyle titlebarStyle) { |
no test coverage detected