Fix unlock action call on password entry activate

This commit is contained in:
Rafael Mardojai CM 2021-04-25 11:46:53 -05:00
parent 536134bb3a
commit 7076a1e71d

View file

@ -343,7 +343,7 @@ impl Window {
self_ self_
.password_entry .password_entry
.connect_activate(clone!(@weak self as win => move |_| { .connect_activate(clone!(@weak self as win => move |_| {
WidgetExt::activate_action(&win, "unlock", None); WidgetExt::activate_action(&win, "win.unlock", None);
})); }));
// On each click or key pressed we restart the timeout. // On each click or key pressed we restart the timeout.