lol termcap

This commit is contained in:
Adam D. Ruppe 2020-02-21 20:06:07 -05:00
parent 57ae7fa96b
commit 9184acb4f8
2 changed files with 2 additions and 1 deletions

View File

@ -1328,7 +1328,7 @@ class SimpleWindow : CapableOfHandlingNativeEvent, CapableOfBeingDrawnUpon {
width = the width of the window's client area, in pixels
height = the height of the window's client area, in pixels
title = the title of the window (seen in the title bar, taskbar, etc.). You can change it after construction with the [SimpleWindow.title\ property.
title = the title of the window (seen in the title bar, taskbar, etc.). You can change it after construction with the [SimpleWindow.title] property.
opengl = [OpenGlOptions] are yes and no. If yes, it creates an OpenGL context on the window.
resizable = [Resizability] has three options:
$(P `allowResizing`, which allows the window to be resized by the user. The `windowResized` delegate will be called when the size is changed.)

View File

@ -995,6 +995,7 @@ struct Terminal {
this.type = type;
if(type == ConsoleOutputType.minimalProcessing) {
readTermcap();
_suppressDestruction = true;
return;
}