From 2a9b831312d7323529bcaa642ac65310631bfa51 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Mon, 31 Jul 2017 19:17:48 -0400 Subject: [PATCH] Add missing text size outlet actions --- writeas/AppDelegate.swift | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/writeas/AppDelegate.swift b/writeas/AppDelegate.swift index 93779a3..47ccc94 100644 --- a/writeas/AppDelegate.swift +++ b/writeas/AppDelegate.swift @@ -90,5 +90,13 @@ class AppDelegate: NSObject, NSApplicationDelegate { @IBAction func publishDoc(_ sender: Any) { vc?.publish() } + + @IBAction func viewIncTextSize(_ sender: Any) { + vc?.adjustTextSize(increment: true) + } + + @IBAction func viewDecTextSize(_ sender: Any) { + vc?.adjustTextSize(increment: false) + } }