papers/papers-47.0-go-backwards-action.patch
Marek Kasik bb4d8b6878 Fix fast navigation
+ enable libspelling support since it was added to buildroot recently.

Resolves: RHEL-76523
2025-02-03 12:42:10 +01:00

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