Make the Event Log scroll down when more things appear on it

[originally from svn r618]
This commit is contained in:
Simon Tatham 2000-09-22 14:24:27 +00:00
Родитель 6522c357fc
Коммит ddbc120725
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1579,9 +1579,13 @@ void logevent (char *string) {
events[nevents] = smalloc(1+strlen(string));
strcpy (events[nevents], string);
nevents++;
if (logbox)
if (logbox) {
int count;
SendDlgItemMessage (logbox, IDN_LIST, LB_ADDSTRING,
0, (LPARAM)string);
count = SendDlgItemMessage (logbox, IDN_LIST, LB_GETCOUNT, 0, 0);
SendDlgItemMessage (logbox, IDN_LIST, LB_SETCURSEL, count-1, 0);
}
}
void showeventlog (HWND hwnd) {