Skip to content

Commit

Permalink
Fix no "Show as..." menu option appearing on widget tiles (wpilibsuit…
Browse files Browse the repository at this point in the history
  • Loading branch information
SamCarlberg authored and bradamiller committed Jan 2, 2018
1 parent 88bf9e9 commit 7d2f746
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ protected ActionList(String name) {
}

public boolean hasItems() {
return actions.isEmpty();
return !actions.isEmpty();
}

public ActionList addAction(String name, Runnable r) {
Expand Down

0 comments on commit 7d2f746

Please sign in to comment.