Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove old comment #2101

Merged
merged 1 commit into from
May 19, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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