소스 검색

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?