Minimizable record options

This commit is contained in:
Alexey 2025-09-15 17:26:04 +03:00
commit 8df3893baa
2 changed files with 20 additions and 4 deletions

View file

@ -25,6 +25,7 @@ global TimeString {
export component Timeline inherits Rectangle {
callback new-day-started;
callback clicked <=> ta.clicked;
in-out property<bool> updating: true;
in-out property<[TimelineEvent]> events: [];
@ -46,6 +47,11 @@ export component Timeline inherits Rectangle {
}
}
ta := TouchArea {
preferred-width: 100%;
preferred-height: 100%;
}
background: gray;
border-width: 1px;
border-color: black;