Przeglądaj źródła

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

Kevin Bradley 5 lat temu
rodzic
commit
5482b5f8b8

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