Sfoglia il codice sorgente

Add missing text size outlet actions

master
Matt Baer 6 anni fa
parent
commit
2a9b831312
1 ha cambiato i file con 8 aggiunte e 0 eliminazioni
  1. +8
    -0
      writeas/AppDelegate.swift

+ 8
- 0
writeas/AppDelegate.swift Vedi File

@@ -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)
}
}


Caricamento…
Annulla
Salva