Skip to content

Commit 8df24c5

Browse files
committed
cleaning the code
1 parent fb15f1d commit 8df24c5

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/vs/editor/contrib/hover/browser/contentHover.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -215,23 +215,23 @@ export class ContentHoverController extends Disposable {
215215
this._setCurrentResult(null);
216216
}
217217

218-
get isColorPickerVisible(): boolean {
218+
public get isColorPickerVisible(): boolean {
219219
return this._widget.isColorPickerVisible;
220220
}
221221

222-
get isVisibleFromKeyboard(): boolean {
222+
public get isVisibleFromKeyboard(): boolean {
223223
return this._widget.isVisibleFromKeyboard;
224224
}
225225

226-
get isVisible(): boolean {
226+
public get isVisible(): boolean {
227227
return this._widget.isVisible;
228228
}
229229

230-
get isFocused(): boolean {
230+
public get isFocused(): boolean {
231231
return this._widget.isFocused;
232232
}
233233

234-
get isResizing(): boolean {
234+
public get isResizing(): boolean {
235235
return this._widget.isResizing;
236236
}
237237

src/vs/editor/contrib/hover/browser/hover.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,11 +303,11 @@ export class ModesHoverController implements IEditorContribution {
303303
this._contentWidget?.goToBottom();
304304
}
305305

306-
get isColorPickerVisible(): boolean | undefined {
306+
public get isColorPickerVisible(): boolean | undefined {
307307
return this._contentWidget?.isColorPickerVisible;
308308
}
309309

310-
get isHoverVisible(): boolean | undefined {
310+
public get isHoverVisible(): boolean | undefined {
311311
return this._contentWidget?.isVisible;
312312
}
313313

0 commit comments

Comments
 (0)