mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-12 18:13:50 -05:00
Fix the System Caret so it really is invisible, and the right size
too. [originally from svn r842]
This commit is contained in:
parent
f2b13650c8
commit
175d849778
3
window.c
3
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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user