소스 검색

fixed an explorer bug, going to do one more release and then try to take a break on this

Kevin Bradley 5 년 전
부모
커밋
5482b5f8b8
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      Classes/ExplorerInterface/FLEXExplorerViewController.m

+ 3 - 1
Classes/ExplorerInterface/FLEXExplorerViewController.m

@@ -300,7 +300,9 @@ typedef NS_ENUM(NSUInteger, FLEXExplorerMode) {
         make.button(@"Show Usage Hints").handler(^(NSArray<NSString *> *strings) {
             [[FLEXManager sharedManager] showHintsAlert];
         });
-        make.button(@"Cancel").cancelStyle();
+        make.button(@"Cancel").cancelStyle().handler(^(NSArray<NSString *> *strings) {
+            [[FLEXManager sharedManager] showExplorer];
+        });
     } showFrom:self];
 }