|
Revision 112, 387 bytes
(checked in by ashley, 9 months ago)
|
|
Added pill.r
Scroller fixes
Major color / theme management changes (in progress)
|
| Line | |
|---|
| 1 | panel: make pill [
|
|---|
| 2 | tip: {
|
|---|
| 3 | USAGE:
|
|---|
| 4 | panel sky data [after 1 field field]
|
|---|
| 5 |
|
|---|
| 6 | DESCRIPTION:
|
|---|
| 7 | A static widget used to group widgets within a container.
|
|---|
| 8 | }
|
|---|
| 9 | size: -1x-1
|
|---|
| 10 | init: make function! [] [
|
|---|
| 11 | data: layout/only data
|
|---|
| 12 | pane: data/pane
|
|---|
| 13 | all [negative? size/x size/x: data/size/x]
|
|---|
| 14 | all [negative? size/y size/y: data/size/y]
|
|---|
| 15 | data: none
|
|---|
| 16 | action/on-resize self
|
|---|
| 17 | ]
|
|---|
| 18 | ] |
|---|