Explorar el Código

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

Kevin Bradley hace 5 años
padre
commit
5482b5f8b8
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  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];
 }