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 {
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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments