mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
parent
ea8e2a81c6
commit
da90d2f800
3 changed files with 4 additions and 4 deletions
|
@ -45,7 +45,7 @@
|
|||
<UL>
|
||||
<LI>
|
||||
When launched from the toolbar icon, the provider that is shown will track the
|
||||
current location in the Listing (the the <IMG src="images/locationIn.gif" border="1">
|
||||
current location in the Listing (the <IMG src="images/locationIn.gif" border="1">
|
||||
<A href="#Call_Tree_Action_Incoming_Navigation">Navigate on Incoming Location Changes
|
||||
button</A> is on).
|
||||
</LI>
|
||||
|
|
|
@ -111,8 +111,8 @@ public class CallTreePlugin extends ProgramPlugin {
|
|||
|
||||
CallTreeProvider findTransientProviderForLocation(ProgramLocation location) {
|
||||
for (CallTreeProvider provider : providers) {
|
||||
if (provider == primaryProvider) {
|
||||
continue; // not transient
|
||||
if (!provider.isTransient()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (provider.isShowingLocation(location)) {
|
||||
|
|
|
@ -397,7 +397,7 @@ public class GHelpHTMLEditorKit extends HTMLEditorKit {
|
|||
* anything.
|
||||
*
|
||||
* To get the base class to use our image, we override getImage(). However, we should
|
||||
* only return our image when the base class is finished loaded. (See the base class'
|
||||
* only return our image when the base class is finished loading. (See the base class'
|
||||
* paint() method for why we need to do this.)
|
||||
*
|
||||
* Note: if we start seeing unusual behavior, like images not rendering, or any size
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue