Core no longer naievely constrains canvas resize dimensions

This commit is contained in:
Sasha Koshka
2023-01-17 14:31:06 -05:00
parent 91e60900ad
commit 375205a4d2
3 changed files with 1 additions and 5 deletions

View File

@@ -113,7 +113,6 @@ func (control CoreControl) PushAll () {
// AllocateCanvas resizes the canvas, constraining the width and height so that
// they are not less than the specified minimum width and height.
func (control *CoreControl) AllocateCanvas (width, height int) {
width, height, _ = control.ConstrainSize(width, height)
control.core.canvas = tomo.NewBasicCanvas(width, height)
control.BasicCanvas = control.core.canvas
}