Skip to content

Commit

Permalink
Merge pull request #2101 from Tyriar/bad_comment_
Browse files Browse the repository at this point in the history
Remove old comment
  • Loading branch information
Tyriar committed May 19, 2019
2 parents eb70ddc + 2f08b87 commit 739723f
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/renderer/Types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,6 @@ export const enum FLAGS {
export interface IRenderer extends IDisposable {
readonly dimensions: IRenderDimensions;

/**
* A property that is set by consumers of this interface, this will be set to true when the
* terminal is completely offscreen and to false when it comes back on. When true the consumer of
* the renderer will not trigger `renderRows`, the renderer should disable code in functions other
* than `renderRows` that renders to the screen but it should continue to gather state changes.
* When the renderer is unpaused, a full `renderRows` will be triggered if it was called while
* paused.
*
* For example, when `isPaused` is `true`, `IRenderer.onBlur` should record the state change, but
* not actually draw the blurred cursor.
*/
// isPaused: boolean;

dispose(): void;
setColors(colors: IColorSet): void;
onDevicePixelRatioChange(): void;
Expand Down

0 comments on commit 739723f

Please sign in to comment.