File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
src/vs/editor/contrib/hover/browser Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -215,23 +215,23 @@ export class ContentHoverController extends Disposable {
215
215
this . _setCurrentResult ( null ) ;
216
216
}
217
217
218
- get isColorPickerVisible ( ) : boolean {
218
+ public get isColorPickerVisible ( ) : boolean {
219
219
return this . _widget . isColorPickerVisible ;
220
220
}
221
221
222
- get isVisibleFromKeyboard ( ) : boolean {
222
+ public get isVisibleFromKeyboard ( ) : boolean {
223
223
return this . _widget . isVisibleFromKeyboard ;
224
224
}
225
225
226
- get isVisible ( ) : boolean {
226
+ public get isVisible ( ) : boolean {
227
227
return this . _widget . isVisible ;
228
228
}
229
229
230
- get isFocused ( ) : boolean {
230
+ public get isFocused ( ) : boolean {
231
231
return this . _widget . isFocused ;
232
232
}
233
233
234
- get isResizing ( ) : boolean {
234
+ public get isResizing ( ) : boolean {
235
235
return this . _widget . isResizing ;
236
236
}
237
237
Original file line number Diff line number Diff line change @@ -303,11 +303,11 @@ export class ModesHoverController implements IEditorContribution {
303
303
this . _contentWidget ?. goToBottom ( ) ;
304
304
}
305
305
306
- get isColorPickerVisible ( ) : boolean | undefined {
306
+ public get isColorPickerVisible ( ) : boolean | undefined {
307
307
return this . _contentWidget ?. isColorPickerVisible ;
308
308
}
309
309
310
- get isHoverVisible ( ) : boolean | undefined {
310
+ public get isHoverVisible ( ) : boolean | undefined {
311
311
return this . _contentWidget ?. isVisible ;
312
312
}
313
313
You can’t perform that action at this time.
0 commit comments