SetMinMaxSize sets the minimum and maximum outer size of the *WidgetBase, including decorations. Use walk.Size{} to make the respective limit be ignored.
(min, max Size)
| 266 | // |
| 267 | // Use walk.Size{} to make the respective limit be ignored. |
| 268 | func (wb *WidgetBase) SetMinMaxSize(min, max Size) (err error) { |
| 269 | err = wb.WindowBase.SetMinMaxSize(min, max) |
| 270 | |
| 271 | wb.RequestLayout() |
| 272 | |
| 273 | return |
| 274 | } |
| 275 | |
| 276 | // AlwaysConsumeSpace returns if the Widget should consume space even if it is |
| 277 | // not visible. |
nothing calls this directly
no test coverage detected