Skip to content

Commit

Permalink
Make title in window/progress optional
Browse files Browse the repository at this point in the history
Proposing this as of microsoft#245 (comment).
Existing discussion regarding the title: sourcegraph#21 (comment).
  • Loading branch information
Xanewok authored Oct 4, 2017
1 parent 9a36d6a commit cbf3e4e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -1340,10 +1340,10 @@ interface ProgressParams {
id: string;

/**
* The title of the progress.
* This should be the same for all ProgressParams with the same id.
* Optional title of the progress.
* If unset, the previous title (if any) is still valid.
*/
title: string;
title?: string;

/**
* Optional progress message to display.
Expand Down

0 comments on commit cbf3e4e

Please sign in to comment.