+ enable libspelling support since it was added to buildroot recently. Resolves: RHEL-76523
27 lines
924 B
Diff
27 lines
924 B
Diff
From 7be0a67e000358476dda43edc74ea756d3066e18 Mon Sep 17 00:00:00 2001
|
|
From: Marek Kasik <mkasik@redhat.com>
|
|
Date: Fri, 31 Jan 2025 12:40:03 +0100
|
|
Subject: [PATCH 1/2] shell: Fix "go-backwards" action
|
|
|
|
The go-backwards action did not work before due to a typo in its name.
|
|
---
|
|
shell/src/document_view/actions.rs | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/shell/src/document_view/actions.rs b/shell/src/document_view/actions.rs
|
|
index bdf744431..a4036ab92 100644
|
|
--- a/shell/src/document_view/actions.rs
|
|
+++ b/shell/src/document_view/actions.rs
|
|
@@ -659,7 +659,7 @@ impl imp::PpsDocumentView {
|
|
}
|
|
))
|
|
.build(),
|
|
- gio::ActionEntryBuilder::new("go-back")
|
|
+ gio::ActionEntryBuilder::new("go-backwards")
|
|
.activate(glib::clone!(
|
|
#[weak(rename_to = obj)]
|
|
self,
|
|
--
|
|
2.48.1
|
|
|