Fix after bugfix in gvidbase.cpp. Thanks to Ianos Gnatiuc 2:469/335.155

This commit is contained in:
Stas Degteff 2005-08-09 12:26:08 +00:00
parent 5a23a2e896
commit 7369b19ead

View File

@ -1766,8 +1766,10 @@ void IEclass::savefile(int __status) {
GFTRK("Editsavefile");
// Turn off cursor and put up a wait window
#if defined(__USE_NCURSES__) || !defined(__WIN32__) /* Fix after bugfix w9x console bug in gvidbase.cpp */
int wascursoron = not vcurhidden();
cursoroff();
#endif
strcpy(statbak, information);
update_statusline(LNG->Wait+1);
@ -1812,8 +1814,10 @@ void IEclass::savefile(int __status) {
update_statusline(statbak);
#if defined(__USE_NCURSES__) || !defined(__WIN32__) /* Fix after bugfix w9x console bug in gvidbase.cpp */
if(wascursoron)
cursoron();
#endif
GFTRK(NULL);
}