Issue #1233 Added check for null shell in PointEditAction.
Change-Id: Ia96e6c1feb612b70e518c12722cd5e169bf142ac Former-commit-id:65131152a3
[formerly63c34663bd
] [formerly241e41379f
] [formerly65131152a3
[formerly63c34663bd
] [formerly241e41379f
] [formerlyac331563fa
[formerly241e41379f
[formerly f6437fdb1bae6439481c01042cb74c885ba0768a]]]] Former-commit-id:ac331563fa
Former-commit-id:5c2ff072f1
[formerlyfb142e270b
] [formerly 26ca7ce4a3417603fa5e185b0371d70241d22965 [formerlyfa86d58ede
]] Former-commit-id: 73d60d1e5a53ccf6ea51d95b812af23b7f5c48c8 [formerly847489afd9
] Former-commit-id:709846b805
This commit is contained in:
parent
0e384227f5
commit
484e86d746
2 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.
|
||||
.,\
|
||||
icons/
|
||||
|
|
|
@ -62,7 +62,7 @@ public class PointEditAction extends AbstractRightClickAction {
|
|||
|
||||
@Override
|
||||
public void run() {
|
||||
if (dialog == null || dialog.isDisposed()) {
|
||||
if (dialog == null || dialog.getShell() == null || dialog.isDisposed()) {
|
||||
dialog = new PointsMgrDialog(Display.getCurrent().getShells()[0],
|
||||
(PointsToolLayer) getSelectedRsc());
|
||||
dialog.setBlockOnOpen(false);
|
||||
|
|
Loading…
Add table
Reference in a new issue