From cb8d24d0d2bed101f4439b2f819a8de7501ef151 Mon Sep 17 00:00:00 2001 From: Julian Sparber Date: Tue, 28 Dec 2021 18:30:14 +0100 Subject: [PATCH] session-verification: Keep login data when back button is pressed --- src/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.rs b/src/window.rs index 087d9809..2b07cd2b 100644 --- a/src/window.rs +++ b/src/window.rs @@ -135,7 +135,7 @@ impl Window { if let Some(child) = priv_.sessions.first_child() { priv_.sessions.set_visible_child(&child); } else { - self.switch_to_login_page(true); + self.switch_to_login_page(false); } }