1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Matthias Geiger <werdahias@debian.org>
Date: Thu, 15 Jan 2026 00:59:33 +0100
Subject: [PATCH] shell/src/password.rs: Fix build
---
shell/src/password_view.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/shell/src/password_view.rs b/shell/src/password_view.rs
index df6e4e0..554a903 100644
--- a/shell/src/password_view.rs
+++ b/shell/src/password_view.rs
@@ -153,7 +153,7 @@ mod imp {
self.dialog.replace(Some(dialog));
main.choose(
- self.obj().as_ref(),
+ Some(self.obj().as_ref()),
gio::Cancellable::NONE,
glib::clone![
#[weak(rename_to = obj)]
|