From b246c0634522078e3f47b235a8ff746bb70996bf Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Wed, 12 Sep 2018 07:01:23 -0700 Subject: [PATCH] ui.gadgets.frames: default filled-cell to { 0 0 }. --- basis/ui/gadgets/frames/frames.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/ui/gadgets/frames/frames.factor b/basis/ui/gadgets/frames/frames.factor index 07fa67aeaa..bf541ea589 100644 --- a/basis/ui/gadgets/frames/frames.factor +++ b/basis/ui/gadgets/frames/frames.factor @@ -4,7 +4,7 @@ USING: accessors fry kernel math math.order sequences ui.gadgets ui.gadgets.grids ui.gadgets.grids.private ; IN: ui.gadgets.frames -TUPLE: frame < grid filled-cell ; +TUPLE: frame < grid { filled-cell initial: { 0 0 } } ;