Update the text format of the public key as the comment box is edited

[originally from svn r989]
This commit is contained in:
Simon Tatham 2001-03-10 10:22:18 +00:00
Родитель 83affa4ed9
Коммит eee0a20be6
1 изменённых файлов: 7 добавлений и 2 удалений

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

@ -530,8 +530,13 @@ static int CALLBACK MainDlgProc (HWND hwnd, UINT msg,
sfree(*state->commentptr);
*state->commentptr = smalloc(len+1);
GetWindowText(editctl, *state->commentptr, len+1);
}
}
if (state->ssh2) {
setupbigedit2(hwnd, IDC_KEYDISPLAY, &state->ssh2key);
} else {
setupbigedit1(hwnd, IDC_KEYDISPLAY, &state->key);
}
}
}
break;
case IDC_ABOUT:
EnableWindow(hwnd, 0);