Fix menu key binding editor

This commit is contained in:
1024jp 2015-10-10 19:18:52 +02:00
parent c08045dfad
commit d13d77f4da
2 changed files with 2 additions and 1 deletions

View File

@ -18,6 +18,7 @@ develop
- Fix an issue where the baseline of invisible characters were wrong by some fonts.
- Fix an issue where application could crash after modifying theme name on El Capitan.
- Fix an issue where submenu disclosure arrows in the menu key binding editor did occasionally disappear.
- Fix an issue under the specific conditions where the migration window showed up every time on launch.

View File

@ -128,7 +128,7 @@
- (BOOL)outlineView:(nonnull NSOutlineView *)outlineView isItemExpandable:(nonnull id)item
// ------------------------------------------------------
{
return ([self childrenOfItem:item]);
return [[self childrenOfItem:item] count] > 0;
}