This is an automated email from the ASF dual-hosted git repository.
shanedell pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git
The following commit(s) were added to refs/heads/main by this push:
new 773bc95 Fix issue of duplicate descriptions for different views.
773bc95 is described below
commit 773bc9513ff0ab3be4db25cae45c29edbdd8cb52
Author: Shane Dell <[email protected]>
AuthorDate: Mon Aug 7 17:43:36 2023 -0400
Fix issue of duplicate descriptions for different views.
- Update package.json to fix the description of the openInfosetView and
openInfosetDiffView variables.
- Update launchWizard to fix the description of the openInfosetView and
openInfosetDiffView display items.
Closes #730
---
package.json | 8 ++++----
src/launchWizard/launchWizard.ts | 4 ++--
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/package.json b/package.json
index f9317d4..578e1bf 100644
--- a/package.json
+++ b/package.json
@@ -403,12 +403,12 @@
},
"openInfosetView": {
"type": "boolean",
- "description": "Open hexview on debug start",
+ "description": "Open infoset view on debug start",
"default": false
},
"openInfosetDiffView": {
"type": "boolean",
- "description": "Open hexview on debug start",
+ "description": "Open infoset diff view on debug start",
"default": false
},
"daffodilDebugClasspath": {
@@ -613,12 +613,12 @@
},
"openInfosetView": {
"type": "boolean",
- "description": "Open hexview on debug start",
+ "description": "Open infoset view on debug start",
"default": false
},
"openInfosetDiffView": {
"type": "boolean",
- "description": "Open hexview on debug start",
+ "description": "Open infoset diff view on debug start",
"default": false
},
"daffodilDebugClasspath": {
diff --git a/src/launchWizard/launchWizard.ts b/src/launchWizard/launchWizard.ts
index 458afed..a2c4b44 100644
--- a/src/launchWizard/launchWizard.ts
+++ b/src/launchWizard/launchWizard.ts
@@ -523,7 +523,7 @@ class LaunchWizard {
<div id="openInfosetDiffViewDiv" class="setting-div"
onclick="check('openInfosetDiffView')">
<p>Open Infoset Diff View:</p>
- <label class="container">Open hexview on debug start.
+ <label class="container">Open infoset view on debug start.
<input type="checkbox" id="openInfosetDiffView"
${openInfosetDiffView}>
<span class="checkmark"></span>
</label>
@@ -531,7 +531,7 @@ class LaunchWizard {
<div id="openInfosetViewDiv" class="setting-div"
onclick="check('openInfosetView')">
<p>Open Infoset View:</p>
- <label class="container">Open hexview on debug start.
+ <label class="container">Open infoset diff on debug start.
<input type="checkbox" id="openInfosetView" ${openInfosetView}>
<span class="checkmark"></span>
</label>