delegate is_sensitive_input argument to the form component

This commit is contained in:
yggverse 2024-10-17 09:53:02 +03:00
parent 7fc6cad8b5
commit a15738f391
3 changed files with 11 additions and 3 deletions

View file

@ -37,7 +37,14 @@ impl Input {
is_sensitive_input: bool,
) {
self.widget.update(Some(
&Response::new_arc(action_page_open, base, title, size_limit).gobject(),
&Response::new_arc(
action_page_open,
base,
title,
size_limit,
is_sensitive_input,
)
.gobject(),
));
}