Skip to content

Commit

Permalink
Fixes #210671 (#211140)
Browse files Browse the repository at this point in the history
  • Loading branch information
hediet committed Apr 23, 2024
1 parent 52a57a7 commit 9fc58fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/vs/base/common/event.ts
Expand Up @@ -1633,7 +1633,7 @@ export class Relay<T> implements IDisposable {

export interface IValueWithChangeEvent<T> {
readonly onDidChange: Event<void>;
readonly value: T;
get value(): T;
}

export class ValueWithChangeEvent<T> implements IValueWithChangeEvent<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/vs/platform/quickinput/browser/quickInputTree.ts
Expand Up @@ -318,7 +318,7 @@ class QuickInputAccessibilityProvider implements IListAccessibilityProvider<IQui
}

return {
value: element.checked,
get value() { return element.checked; },
onDidChange: e => element.onChecked(() => e()),
};
}
Expand Down

0 comments on commit 9fc58fa

Please sign in to comment.