Przeglądaj źródła

Fix color explorer "color" row bug

Tanner Bennett 7 lat temu
rodzic
commit
4c1fceac54

+ 9 - 0
Classes/ObjectExplorers/Controllers/FLEXColorExplorerViewController.m

@@ -37,4 +37,13 @@
     return square;
 }
 
+- (BOOL)customSectionCanDrillIntoRowWithCookie:(id)rowCookie
+{
+    if ([@0 isEqual:rowCookie]) {
+        return NO;
+    }
+    
+    return [super customSectionCanDrillIntoRowWithCookie:rowCookie];
+}
+
 @end