浏览代码

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];
 }