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

@ -4,9 +4,9 @@
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@ -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")