Browse Source

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

Kevin Bradley 3 years ago
parent
commit
5482b5f8b8
1 changed files with 3 additions and 1 deletions
  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];
 }