From 9184acb4f889303fadaa3cc82aff5dfd72a64344 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Fri, 21 Feb 2020 20:06:07 -0500 Subject: [PATCH] lol termcap --- simpledisplay.d | 2 +- terminal.d | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/simpledisplay.d b/simpledisplay.d index d1bdafe..69cd008 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -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.) diff --git a/terminal.d b/terminal.d index ddd2ffc..db2e48a 100644 --- a/terminal.d +++ b/terminal.d @@ -995,6 +995,7 @@ struct Terminal { this.type = type; if(type == ConsoleOutputType.minimalProcessing) { + readTermcap(); _suppressDestruction = true; return; }