SetClientSizePixels sets the size of the inner bounding box of the *WindowBase, excluding decorations.
(value Size)
| 1869 | // SetClientSizePixels sets the size of the inner bounding box of the *WindowBase, |
| 1870 | // excluding decorations. |
| 1871 | func (wb *WindowBase) SetClientSizePixels(value Size) error { |
| 1872 | return wb.SetSizePixels(wb.sizeFromClientSizePixels(value)) |
| 1873 | } |
| 1874 | |
| 1875 | // RequestLayout either schedules or immediately starts performing layout. |
| 1876 | func (wb *WindowBase) RequestLayout() { |
no test coverage detected