Browse Source

Center titles in no-subtitle shortcuts

Tanner Bennett 6 years ago
parent
commit
43a3f859e2
1 changed files with 5 additions and 0 deletions
  1. 5 0
      Classes/ObjectExplorers/Sections/Shortcuts/FLEXShortcut.m

+ 5 - 0
Classes/ObjectExplorers/Sections/Shortcuts/FLEXShortcut.m

@@ -183,6 +183,11 @@
 }
 
 - (NSString *)customReuseIdentifierWith:(id)object {
+    if (!self.subtitleFuture(object)) {
+        // The text is more centered with this style if there is no subtitle
+        return kFLEXDefaultCell;
+    }
+
     return nil;
 }