Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Classes/Core/Controllers/FLEXTableViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ - (void)setupToolbarItems {
];

for (UIBarButtonItem *item in self.toolbarItems) {
[item _setWidth:60];
item.width = 60;
// This does not work for anything but fixed spaces for some reason
// item.width = 60;
}
Expand Down
2 changes: 0 additions & 2 deletions Classes/Utility/Categories/UIBarButtonItem+FLEX.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,4 @@
/// @return the receiver
- (UIBarButtonItem *)flex_withTintColor:(UIColor *)tint;

- (void)_setWidth:(CGFloat)width;

@end