Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
azakhary committed Jul 24, 2015
2 parents c2023aa + 557e688 commit 1430e29
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/com/uwsoft/editor/view/Overlap2DMenuBar.java
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,9 @@ public void reInitRecent(ArrayList<String> paths) {

addRecent(paths);

recentProjectsPopupMenu.addSeparator();
if (paths.size() > 0) {
recentProjectsPopupMenu.addSeparator();
}

MenuItem menuItem = new MenuItem("Clear list", new MenuItemListener(CLEAR_RECENTS, null, FILE_MENU));
recentProjectsMenuItems.add(menuItem);
Expand Down

0 comments on commit 1430e29

Please sign in to comment.