settings: add osd timeout

This commit is contained in:
end-4
2025-07-07 17:57:05 +02:00
parent d801f132d1
commit 32380d29c8
@@ -306,6 +306,20 @@ ContentPage {
}
}
ContentSection {
title: "On-screen display"
ConfigSpinBox {
text: "Timeout (ms)"
value: Config.options.osd.timeout
from: 100
to: 3000
stepSize: 100
onValueChanged: {
Config.options.osd.timeout = value;
}
}
}
ContentSection {
title: "Overview"
ConfigSpinBox {