From c40fc50f872cd7ff085c75e68eab157b259d4d38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Thu, 19 Feb 2026 16:07:39 +0100 Subject: [PATCH] lockscreen: Ellipsize labels MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is the prefered style and matches other components. Signed-off-by: Guido Günther --- src/lockscreen.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lockscreen.rs b/src/lockscreen.rs index 24b41c57..de58813b 100644 --- a/src/lockscreen.rs +++ b/src/lockscreen.rs @@ -189,7 +189,7 @@ mod imp { self.session.replace(user.clone()); let username = user.unwrap(); info!("creating greetd session for user {}", username); - self.obj().set_unlock_status("Please wait..."); + self.obj().set_unlock_status("Please wait…"); self.obj().set_sensitive(false); let mut req = Some(Request::CreateSession { username }); while let Some(next_req) = req.take() { @@ -286,7 +286,7 @@ mod imp { } } Response::Success => { - self.obj().set_unlock_status("Success. Logging in..."); + self.obj().set_unlock_status("Success. Logging in…"); self.start_session().await.unwrap(); g_message!("phrog", "launched session, exiting in {}ms", QUIT_DELAY); Shell::default().fade_out(0); @@ -330,7 +330,7 @@ mod imp { impl LockscreenImpl for Lockscreen { fn unlock_submit(&self) { glib::spawn_future_local(clone!(@weak self as this => async move { - this.obj().set_unlock_status("Please wait..."); + this.obj().set_unlock_status("Please wait…"); this.obj().set_sensitive(false); let mut req = Some(Request::PostAuthMessageResponse { response: Some(this.obj().pin_entry().to_string())