mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-10 12:03:16 +02:00
[207807] missing !isDisposed() check in Rendering.redrawPanes()
This commit is contained in:
parent
b24b901b33
commit
0d914fc773
1 changed files with 1 additions and 1 deletions
|
@ -1542,7 +1542,7 @@ public class Rendering extends Composite implements IDebugEventSetListener
|
|||
|
||||
protected void redrawPanes()
|
||||
{
|
||||
if(this.isVisible())
|
||||
if(!isDisposed() && this.isVisible())
|
||||
{
|
||||
if(fAddressPane.isPaneVisible())
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue