a lightweight, interval-based utility to combat digital strain through "Ma" (intentional pauses) for the eyes and body.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: invisible settings window

- set explicit window height
- remove ScrollView

+5 -7
+5 -7
ui/settings.slint
··· 1 - import { Button, ComboBox, CheckBox, Slider, TabWidget, LineEdit, SpinBox, ScrollView } from "std-widgets.slint"; 1 + import { Button, ComboBox, CheckBox, Slider, TabWidget, LineEdit, SpinBox } from "std-widgets.slint"; 2 2 3 3 struct LevelEntry { 4 4 work-mins: int, ··· 10 10 export component SettingsWindow inherits Window { 11 11 title: "ioma — Settings"; 12 12 width: 600px; 13 - min-height: 460px; 13 + height: 520px; 14 14 15 15 // Populated from Rust. 16 16 in-out property <bool> enforced-mode: false; ··· 71 71 72 72 Tab { 73 73 title: "Profile"; 74 - ScrollView { 75 - VerticalLayout { 76 - padding: 16px; 77 - spacing: 10px; 74 + VerticalLayout { 75 + padding: 16px; 76 + spacing: 10px; 78 77 79 78 HorizontalLayout { 80 79 spacing: 8px; ··· 185 184 } 186 185 } 187 186 } 188 - } 189 187 } 190 188 191 189 Tab {