Skip to content

Commit c77c975

Browse files
committed
Improve settings message, and add minLength and maxLength
1 parent e937484 commit c77c975

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/vs/workbench/browser/actions/developerActions.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,10 @@ configurationRegistry.registerConfiguration({
323323
'screencastMode.mouseIndicatorColor': {
324324
type: 'string',
325325
format: 'color-hex',
326-
default: '#ff0000',
327-
description: nls.localize('screencastMode.mouseIndicatorColor', "Controls the color (Hex) of the mouse indicator in screencast mode.")
326+
default: '#FF0000',
327+
minLength: 4,
328+
maxLength: 9,
329+
description: nls.localize('screencastMode.mouseIndicatorColor', "Controls the color in hex (#RGB, #RGBA, #RRGGBB or #RRGGBBAA) of the mouse indicator in screencast mode.")
328330
},
329331
'screencastMode.mouseIndicatorSize': {
330332
type: 'number',

0 commit comments

Comments
 (0)