Преглед на файлове

use 3 dots icon in welcome screen

cyberta преди 3 години
родител
ревизия
9cab7854ee
променени са 1 файла, в които са добавени 4 реда и са изтрити 1 реда
  1. 4 1
      deltachat-ios/Controller/WelcomeViewController.swift

+ 4 - 1
deltachat-ios/Controller/WelcomeViewController.swift

@@ -40,7 +40,10 @@ class WelcomeViewController: UIViewController, ProgressAlertHandler {
     }()
 
     private lazy var moreButton: UIBarButtonItem = {
-        return UIBarButtonItem(title: String.localized("more"), style: .plain, target: self, action: #selector(moreButtonPressed))
+        return UIBarButtonItem(image: UIImage(named: "ic_more_vert"),
+                               style: .plain,
+                               target: self,
+                               action: #selector(moreButtonPressed))
     }()
 
     private var qrCodeReader: QrCodeReaderController?