Make platform warning more specific for dialog title

Fixes #101443
This commit is contained in:
Alex Ross 2020-07-01 15:33:19 +02:00
parent 0959e79a09
commit dbfc5dd2fe

8
src/vs/vscode.d.ts vendored
View file

@ -1734,8 +1734,8 @@ declare module 'vscode' {
/**
* Dialog title.
*
* Depending on the underlying operating system this parameter might be ignored, since some
* systems do not present title on open dialogs.
* This parameter might be ignored, as not all operating systems display a title on open dialogs
* (for example, macOS).
*/
title?: string;
}
@ -1769,8 +1769,8 @@ declare module 'vscode' {
/**
* Dialog title.
*
* Depending on the underlying operating system this parameter might be ignored, since some
* systems do not present title on save dialogs.
* This parameter might be ignored, as not all operating systems display a title on save dialogs
* (for example, macOS).
*/
title?: string;
}