From 1454e9dc01b18ce2c11e6e286c8dba27e6ba661e Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Sun, 20 Dec 2020 12:55:46 -0500 Subject: [PATCH] Fix incorrect selector name --- Gemini/BrowserWindowController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemini/BrowserWindowController.swift b/Gemini/BrowserWindowController.swift index 2b89605..1af758e 100644 --- a/Gemini/BrowserWindowController.swift +++ b/Gemini/BrowserWindowController.swift @@ -109,7 +109,7 @@ extension BrowserWindowController: NSToolbarDelegate { item.paletteLabel = "Go Back" item.toolTip = "Go to the previous page" item.target = self - item.action = #selector(goBack) + item.action = #selector(back) item.isBordered = true if #available(macOS 10.16, *) { item.isNavigational = true @@ -128,7 +128,7 @@ extension BrowserWindowController: NSToolbarDelegate { item.paletteLabel = "Go Forward" item.toolTip = "Go to the next page" item.target = self - item.action = #selector(goForward) + item.action = #selector(forward) item.isBordered = true if #available(macOS 10.16, *) { item.isNavigational = true