Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Src/LexText/LexTextDll/HelpTopicPaths.resx
Original file line number Diff line number Diff line change
Expand Up @@ -2739,6 +2739,10 @@
<value>/User_Interface/Menus/Tools/Configure_Dictionary/Configure_Dictionary.htm</value>
<comment>Configure Dictionary Dialog box.</comment>
</data>
<data name="khtpConfigureClassifiedDictionary" xml:space="preserve">
<value>/User_Interface/Menus/Tools/Configure_Classified_Dictionary/Configure_Classified_Dictionary_View_dlgbox.htm</value>
<comment>Configure Classified Dictionary Dialog box.</comment>
</data>
<data name="khtpDictConfigManager" xml:space="preserve">
<value>/User_Interface/Menus/Tools/Configure_Dictionary/Manage_Dictionary_Views.htm</value>
<comment>Configure Dictionary Dialog box.</comment>
Expand Down
11 changes: 9 additions & 2 deletions Src/xWorks/DictionaryConfigurationListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,15 @@ public virtual bool OnDisplayConfigureXmlDocView(object commandObject,

internal static string GetConfigDialogHelpTopic(PropertyTable propertyTable)
{
return GetDictionaryConfigurationBaseType(propertyTable) == ReversalType
? "khtpConfigureReversalIndex" : "khtpConfigureDictionary";
switch (GetDictionaryConfigurationBaseType(propertyTable))
{
case ReversalType:
return "khtpConfigureReversalIndex";
case ClassifiedType:
return "khtpConfigureClassifiedDictionary";
default:
return "khtpConfigureDictionary";
}
}

/// <summary>
Expand Down
Loading