Skip to content

Commit

Permalink
Fix table list context and gear menus incorrectly hiding separator.
Browse files Browse the repository at this point in the history
  • Loading branch information
stuconnolly committed Oct 13, 2018
1 parent 22d8985 commit f9f6908
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/SPTablesList.m
Expand Up @@ -899,7 +899,7 @@ - (void)setSelectionState:(NSDictionary *)selectionDetails
[renameTableContextMenuItem setHidden:YES];
[openTableInNewTabContextMenuItem setHidden:YES];
[openTableInNewWindowContextMenuItem setHidden:YES];
[separatorTableContextMenuItem3 setHidden:YES];
[separatorTableContextMenuItem3 setHidden:NO];
[duplicateTableContextMenuItem setHidden:YES];
[separatorTableContextMenuItem setHidden:YES];
[separatorTableContextMenuItem2 setHidden:NO];
Expand All @@ -912,7 +912,7 @@ - (void)setSelectionState:(NSDictionary *)selectionDetails
[renameTableMenuItem setHidden:YES];
[openTableInNewTabMenuItem setHidden:YES];
[openTableInNewWindowMenuItem setHidden:YES];
[separatorTableMenuItem3 setHidden:YES];
[separatorTableMenuItem3 setHidden:NO];
[duplicateTableMenuItem setHidden:YES];
[separatorTableMenuItem setHidden:YES];
[separatorTableMenuItem2 setHidden:NO];
Expand Down

0 comments on commit f9f6908

Please sign in to comment.