Skip to content

Commit 1bcffc6

Browse files
committed
Update v1.3.4 to resolve issues
1 parent 318372b commit 1bcffc6

File tree

4 files changed

+87
-37
lines changed

4 files changed

+87
-37
lines changed
73 Bytes
Binary file not shown.

package-lock.json

Lines changed: 82 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/licensing/gui/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/providers/navigation/NavigationSupportProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ class NavigationSupportProvider {
162162
}
163163

164164
private _sendSectionRangesForHighlighting (result: MatlabCodeData, uri: string): void {
165-
const sectionRanges = result.sections.map((sectionData) => sectionData.range);
165+
const sectionRanges = result.sections.map((sectionData) => ({ range: sectionData.range, isExplicit: sectionData.isExplicit }));
166166
NotificationService.sendNotification(Notification.MatlabSections, { uri, sectionRanges })
167167
}
168168
}

0 commit comments

Comments
 (0)