Skip to content

Commit 9ee247f

Browse files
authored
Improved documentation of 'title' property on OpenDialogOptions and SaveDialogOptions (microsoft#91633)
1 parent 5eda4d6 commit 9ee247f

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

src/vs/vscode.proposed.d.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1705,7 +1705,10 @@ declare module 'vscode' {
17051705
*/
17061706
export interface OpenDialogOptions {
17071707
/**
1708-
* Dialog title
1708+
* Dialog title.
1709+
*
1710+
* Depending on the underlying operating system this parameter might be ignored, since some
1711+
* systems do not present title on open dialogs.
17091712
*/
17101713
title?: string;
17111714
}
@@ -1715,7 +1718,10 @@ declare module 'vscode' {
17151718
*/
17161719
export interface SaveDialogOptions {
17171720
/**
1718-
* Dialog title
1721+
* Dialog title.
1722+
*
1723+
* Depending on the underlying operating system this parameter might be ignored, since some
1724+
* systems do not present title on save dialogs.
17191725
*/
17201726
title?: string;
17211727
}

0 commit comments

Comments
 (0)