Skip to content

Commit

Permalink
Update FOME, remove webHelp
Browse files Browse the repository at this point in the history
  • Loading branch information
karniv00l committed Dec 25, 2023
1 parent f562303 commit c2c8954
Show file tree
Hide file tree
Showing 6 changed files with 9,163 additions and 8,546 deletions.
2 changes: 0 additions & 2 deletions lib/models/ini_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,6 @@ class UIDialog {
final String label;
UIDialogLayout? layout;
String? topicHelp;
String? webHelp;
List<UIDialogItem> items = [];

Map<String, dynamic> toJson() {
Expand All @@ -1081,7 +1080,6 @@ class UIDialog {
'label': label,
'layout': layout,
'topicHelp': topicHelp,
'webHelp': webHelp,
'items': items.map((i) => i.toJson()).toList(),
};
}
Expand Down
6 changes: 0 additions & 6 deletions lib/sections/ui_dialogs_parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,6 @@ class UiDialogsParser {
switch (name) {
case 'topicHelp':
_parseTopicHelp(result);
case 'webHelp':
_parseWebHelp(result);
case 'field':
_parseField(result);
case 'panel':
Expand Down Expand Up @@ -108,10 +106,6 @@ class UiDialogsParser {
_currentDialog!.topicHelp = result[1];
}

void _parseWebHelp(List<String> result) {
_currentDialog!.webHelp = result[1];
}

void _parseField(List<String> result) {
_currentDialog!.items.add(
UIField(
Expand Down
Loading

0 comments on commit c2c8954

Please sign in to comment.