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