atomize-element-interface #3

Merged
sashakoshka merged 10 commits from atomize-element-interface into main 2023-01-17 19:33:23 +00:00
3 changed files with 1 additions and 5 deletions
Showing only changes of commit 375205a4d2 - Show all commits

View File

@ -207,7 +207,6 @@ func (window *Window) resizeChildToFit () {
minimumHeight := child.MinimumHeightFor(window.metrics.width)
minimumWidth, _ := child.MinimumSize()
icccm.WmNormalHintsSet (
window.backend.connection,
window.xWindow.Id,
@ -219,7 +218,7 @@ func (window *Window) resizeChildToFit () {
if window.metrics.height >= minimumHeight &&
window.metrics.width >= minimumWidth {
window.child.Resize (
window.metrics.width,
window.metrics.height)
@ -254,7 +253,6 @@ func (window *Window) childDrawCallback (region tomo.Canvas) {
}
func (window *Window) childMinimumSizeChangeCallback (width, height int) {
println("x thinks:",width, height)
icccm.WmNormalHintsSet (
window.backend.connection,
window.xWindow.Id,

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
}

View File

@ -99,7 +99,6 @@ func (layout Vertical) MinimumSize (
width += theme.Padding() * 2
height += theme.Padding() * 2
}
println(width, height)
return
}