Skip to content

Commit b9423b5

Browse files
committed
Add known issue and change description in readme
1 parent 1f2c15b commit b9423b5

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [Unreleased]
8+
### Known issues
9+
- The visualization is not shown after hiding the webview with another window and showing it again
810

911
## [0.3.0]
1012
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ This extension allows to display graphical representation of variables during de
5353
#### Known issues
5454

5555
* The extension doesn't work for C++ variables defined with `typedef` with GDB, including classes defining member types, e.g. Boost.Geometry `polygon`. This issue [is known](https://github.com/microsoft/vscode-cpptools/issues/3038) and also affects the use of natvis files. If [this proposal](https://github.com/microsoft/MIEngine/issues/1236) was implemented it could potentially allow to work around this issue.
56-
* Geographic polygons with holes are visualized incorrectly if an interior ring is in the viewport and the whole exterior ring is outside. This is a side effect of a workaround for an [issue in Plotly](https://github.com/plotly/plotly.js/issues/6044) which doesn't support geographic polygons with holes.
56+
* Holes of geographic polygons may be visualized incorrectly. This is a side effect of a workaround for an [issue in Plotly](https://github.com/plotly/plotly.js/issues/6044) which doesn't support geographic polygons with holes.

src/webview.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ export class Webview {
2121
enableScripts: true,
2222
localResourceRoots: [vscode.Uri.file(path.join(this._context.extensionPath, 'resources'))]
2323
});
24+
// this._panel.onDidChangeViewState(
25+
// (e) => {
26+
// // TODO: handle hiding and showing again here?
27+
// },
28+
// null,
29+
// this._context.subscriptions);
2430
this._panel.onDidDispose(
2531
() => {
2632
this._panel = undefined;

0 commit comments

Comments
 (0)