From a3cee00ba3bd24074085521c31c99e9c3d1d2aec Mon Sep 17 00:00:00 2001 From: Bilal Elmoussaoui Date: Sun, 20 Oct 2024 21:13:51 +0200 Subject: [PATCH] account/row: Force LTR for code label Fixes #426 --- src/widgets/accounts/row.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/widgets/accounts/row.rs b/src/widgets/accounts/row.rs index 70c634f..0c56ed2 100644 --- a/src/widgets/accounts/row.rs +++ b/src/widgets/accounts/row.rs @@ -79,6 +79,7 @@ mod imp { .bind_property("code", &*self.otp_label, "label") .sync_create() .build(); + self.otp_label.set_direction(gtk::TextDirection::Ltr); // Only display the increment button if it is a HOTP account self.increment_btn