Skip to content

Commit

Permalink
サブセットタイプが移動できなかったのでコマンド処理を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
nakag committed Mar 7, 2017
1 parent 7ca360f commit e0650ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,6 @@ public Command getCommand(Request request) {
return dialog.getCcommand();
}
}
return null;
return super.getCommand(request);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ protected void updateFigure(IFigure figure) {
@Override
public Command getCommand(Request request) {
if (!REQ_OPEN.equals(request.getType()))
return null;
return super.getCommand(request);

VirtualSupersetType type = getModel();
VirtualSuperset superset = type.getSuperset();
Expand Down

0 comments on commit e0650ec

Please sign in to comment.