From dbfc5dd2fead3c220df8d680d5f0533cb2f3aa35 Mon Sep 17 00:00:00 2001 From: Alex Ross Date: Wed, 1 Jul 2020 15:33:19 +0200 Subject: [PATCH] Make platform warning more specific for dialog title Fixes #101443 --- src/vs/vscode.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index d4a0d5d8dfc..7d8e42b70fc 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -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; }