Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Commit c5a3a77

Browse files
Add missing next and previous find-in-page button handlers (#351)
1 parent f6a771a commit c5a3a77

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

DuckDuckGo/FindInPage/FindInPageViewController.swift

+8
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,14 @@ final class FindInPageViewController: NSViewController {
5151
updateFieldStates()
5252
}
5353

54+
@IBAction func findInPageNext(_ sender: Any?) {
55+
delegate?.findInPageNext(self)
56+
}
57+
58+
@IBAction func findInPagePrevious(_ sender: Any?) {
59+
delegate?.findInPagePrevious(self)
60+
}
61+
5462
@IBAction func findInPageDone(_ sender: Any?) {
5563
delegate?.findInPageDone(self)
5664
}

0 commit comments

Comments
 (0)