Added a help entry for an action missing help

This commit is contained in:
dragonmacher 2024-10-07 16:40:13 -04:00
parent 6805c6bc20
commit 5d499c990e
2 changed files with 11 additions and 2 deletions

View file

@ -72,6 +72,14 @@
</p> </p>
</blockquote> </blockquote>
</blockquote> </blockquote>
<h2><a name="Toggle_Hex_Mode"></a>Toggle Hex Mode</h2>
<blockquote>
<p>
Changes the Enum value column to show values in hex or decimal.
</p>
</blockquote>
<h2><a name="Add_Enum_Value"></a>Add an Enum Entry</h2> <h2><a name="Add_Enum_Value"></a>Add an Enum Entry</h2>
<blockquote> <blockquote>
<p>Create an new enum entry by selecting the <p>Create an new enum entry by selecting the

View file

@ -272,6 +272,7 @@ public class EnumEditorProvider extends ComponentProviderAdapter
private void createActions() { private void createActions() {
hexDisplayAction = new ToggleActionBuilder("Toggle Hex Mode", plugin.getName()) hexDisplayAction = new ToggleActionBuilder("Toggle Hex Mode", plugin.getName())
.helpLocation(new HelpLocation(HELP_TOPIC, "Toggle_Hex_Mode"))
.menuPath("Show Enum Values in Hex") .menuPath("Show Enum Values in Hex")
.description("Toggles Enum value column to show values in hex or decimal") .description("Toggles Enum value column to show values in hex or decimal")
.keyBinding("Shift-H") .keyBinding("Shift-H")