From: simon Date: Sun, 7 Jan 2001 16:35:44 +0000 (+0000) Subject: Fix the System Caret so it really is invisible, and the right size X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/commitdiff_plain/5b7ce734d2e126ebebf27b0a6ece1db672cd3eae?hp=3da0b1d2851d9ab4e15bf611be157ab3a8b33e75 Fix the System Caret so it really is invisible, and the right size too. git-svn-id: svn://svn.tartarus.org/sgt/putty@842 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/window.c b/window.c index b9f509e7..8c2d96c9 100644 --- a/window.c +++ b/window.c @@ -426,6 +426,7 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show) { caretbm = CreateBitmap(font_width, font_height, 1, 1, bits); sfree(bits); } + CreateCaret(hwnd, caretbm, font_width, font_height); /* * Initialise the scroll bar. @@ -1398,7 +1399,7 @@ static LRESULT CALLBACK WndProc (HWND hwnd, UINT message, return 0; case WM_SETFOCUS: has_focus = TRUE; - CreateCaret(hwnd, caretbm, 0, 0); + CreateCaret(hwnd, caretbm, font_width, font_height); ShowCaret(hwnd); compose_state = 0; term_out();