summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-06 10:50:07 -0400
committerPietro Gagliardi <[email protected]>2014-08-06 10:50:07 -0400
commitd307848c8cec7746900aab1edc27d32e9e57be5a (patch)
tree7a8cf4a3b4f679cbedda10c29b873f2af70ad9a4
parentb3b91c68d0b2613700cf84b5887b5ac79da0eb56 (diff)
Removed leftover TODOs: container does handle margins now.
-rw-r--r--redo/mergeback/grid.go1
-rw-r--r--redo/stack.go1
2 files changed, 0 insertions, 2 deletions
diff --git a/redo/mergeback/grid.go b/redo/mergeback/grid.go
index 6465294..3290b78 100644
--- a/redo/mergeback/grid.go
+++ b/redo/mergeback/grid.go
@@ -189,7 +189,6 @@ func (g *Grid) allocate(x int, y int, width int, height int, d *sysSizeData) (al
}
// filling and stretchy are ignored for preferred size calculation
-// We don't consider the margins here, but will need to in container if Window.SizeToFit() is ever made a thing. TODO
func (g *Grid) preferredSize(d *sysSizeData) (width int, height int) {
max := func(a int, b int) int {
if a > b {
diff --git a/redo/stack.go b/redo/stack.go
index 739934d..4f1aca8 100644
--- a/redo/stack.go
+++ b/redo/stack.go
@@ -137,7 +137,6 @@ func (s *Stack) allocate(x int, y int, width int, height int, d *sizing) (alloca
}
// The preferred size of a Stack is the sum of the preferred sizes of non-stretchy controls + (the number of stretchy controls * the largest preferred size among all stretchy controls).
-// We don't consider the margins here, but will need to in container if Window.SizeToFit() is ever made a thing. TODO
func (s *Stack) preferredSize(d *sizing) (width int, height int) {
max := func(a int, b int) int {
if a > b {