logo

badwolf

Unnamed repository; edit this file 'description' to name the repository.
commit: 7c7976f89396778fb74e6122ebb802fabdb30919
parent: a222202081ba70dc8569001a975cef6e5d6791b5
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sat,  9 Mar 2019 06:41:19 +0100

badwolf.c: Fix previous-match handler wrongly going next

Diffstat:

Mbadwolf.c2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/badwolf.c b/badwolf.c @@ -162,7 +162,7 @@ static gboolean SearchEntryCb_previous__match(GtkSearchEntry *search, gpointer u struct Client *browser = (struct Client *)user_data; WebKitFindController *findController = webkit_web_view_get_find_controller(browser->webView); - webkit_find_controller_search_next(findController); + webkit_find_controller_search_previous(findController); return TRUE; }