mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
fixed excessive context changed calls by non visible windows
This commit is contained in:
parent
6ae0c1ce23
commit
13caf91a21
3 changed files with 13 additions and 0 deletions
|
@ -97,6 +97,11 @@ public class WindowActionManager {
|
|||
}
|
||||
|
||||
synchronized void contextChanged(ComponentPlaceholder placeHolder) {
|
||||
|
||||
if (!node.isVisible()) {
|
||||
return;
|
||||
}
|
||||
|
||||
placeHolderForScheduledActionUpdate = placeHolder;
|
||||
|
||||
// Buffer the events, as they tend to come in 3s. That might not sound like alot, but
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue