aloow configuration of notif timeout duration

This commit is contained in:
end-4
2025-09-20 10:47:09 +02:00
parent b9ae5cafa0
commit 3a01dad945
3 changed files with 22 additions and 2 deletions
@@ -141,6 +141,22 @@ ContentPage {
}
}
ContentSection {
icon: "notifications"
title: Translation.tr("Notifications")
ConfigSpinBox {
text: Translation.tr("Timeout duration (if not defined by notification) (ms)")
value: Config.options.notifications.timeout
from: 1000
to: 60000
stepSize: 1000
onValueChanged: {
Config.options.notifications.timeout = value;
}
}
}
ContentSection {
icon: "side_navigation"
title: Translation.tr("Sidebars")