diff options
author | Tom Schindl | 2014-01-24 13:56:07 +0000 |
---|---|---|
committer | Tom Schindl | 2014-01-24 13:56:07 +0000 |
commit | eed0248b15eee9f0e939e42d00d7ce38b2bebda6 (patch) | |
tree | ebad38ebabfa3760a27e31f57239f671f63c68a1 | |
parent | e8530879e3ec5b56ae2c3fa58e2fa70f1c096ac9 (diff) | |
download | org.eclipse.efxclipse-eed0248b15eee9f0e939e42d00d7ce38b2bebda6.tar.gz org.eclipse.efxclipse-eed0248b15eee9f0e939e42d00d7ce38b2bebda6.tar.xz org.eclipse.efxclipse-eed0248b15eee9f0e939e42d00d7ce38b2bebda6.zip |
Bug 426578 - BaseRenderer.unbindWidget (NullPointer exception, widget is0.9.0MAINT_0_9_x
null)
-rwxr-xr-x | bundles/runtime/org.eclipse.fx.ui.workbench.fx/src/org/eclipse/fx/ui/workbench/fx/PartRenderingEngine.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bundles/runtime/org.eclipse.fx.ui.workbench.fx/src/org/eclipse/fx/ui/workbench/fx/PartRenderingEngine.java b/bundles/runtime/org.eclipse.fx.ui.workbench.fx/src/org/eclipse/fx/ui/workbench/fx/PartRenderingEngine.java index ac991bab5..bfdb44f1b 100755 --- a/bundles/runtime/org.eclipse.fx.ui.workbench.fx/src/org/eclipse/fx/ui/workbench/fx/PartRenderingEngine.java +++ b/bundles/runtime/org.eclipse.fx.ui.workbench.fx/src/org/eclipse/fx/ui/workbench/fx/PartRenderingEngine.java @@ -347,6 +347,8 @@ public class PartRenderingEngine implements IPresentationEngine { if (element instanceof MContext) { clearContext((MContext) element); } + + element.setRenderer(null); } } } |