mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
Fixed of recent change to window manager
This commit is contained in:
parent
14d7e1f908
commit
63bdf81b92
1 changed files with 5 additions and 1 deletions
|
@ -2236,7 +2236,11 @@ public class DockingWindowManager implements PropertyChangeListener, Placeholder
|
|||
|
||||
component.removeHierarchyListener(this);
|
||||
DockingWindowManager dwm = getInstance(component);
|
||||
ComponentProvider provider = dwm.getComponentProvider(component);
|
||||
ComponentProvider provider = null;
|
||||
if (dwm != null) {
|
||||
provider = dwm.getComponentProvider(component);
|
||||
}
|
||||
|
||||
listener.componentLoaded(dwm, provider);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue