fix links to help from bundle manager actions

This commit is contained in:
Jason P. Leasure
2020-08-04 18:05:57 -04:00
parent f0832a6e9d
commit 33a62cc811
2 changed files with 8 additions and 2 deletions
@@ -266,6 +266,12 @@
produce errors. In order to force Ghidra to recompile, one must either modify the files produce errors. In order to force Ghidra to recompile, one must either modify the files
with errors or <em>clean</em> the bundle then re-enable.</p> with errors or <em>clean</em> the bundle then re-enable.</p>
<h2><a name="RefreshBundles"/>Refresh bundles</h2>
<p>Refresh will deactivate, clean, then reactivate every enabled bundle.</p>
</body> </body>
</html> </html>
@@ -153,10 +153,10 @@ public class BundleStatusComponentProvider extends ComponentProviderAdapter {
.onAction(c -> doRefresh()) .onAction(c -> doRefresh())
.buildAndInstallLocal(this); .buildAndInstallLocal(this);
addBundlesAction("ActivateBundles", "Enable selected bundle(s)", addBundlesAction("EnableBundles", "Enable selected bundle(s)",
ResourceManager.loadImage("images/media-playback-start.png"), this::doEnableBundles); ResourceManager.loadImage("images/media-playback-start.png"), this::doEnableBundles);
addBundlesAction("DeactivateBundles", "Disable selected bundle(s)", addBundlesAction("DisableBundles", "Disable selected bundle(s)",
ResourceManager.loadImage("images/media-playback-stop.png"), this::doDisableBundles); ResourceManager.loadImage("images/media-playback-stop.png"), this::doDisableBundles);
addBundlesAction("CleanBundles", "Clean selected bundle build cache(s)", addBundlesAction("CleanBundles", "Clean selected bundle build cache(s)",