Fix after bugfix in gvidbase.cpp. Thanks to Ianos Gnatiuc 2:469/335.155
This commit is contained in:
parent
5a23a2e896
commit
7369b19ead
@ -1766,8 +1766,10 @@ void IEclass::savefile(int __status) {
|
|||||||
GFTRK("Editsavefile");
|
GFTRK("Editsavefile");
|
||||||
|
|
||||||
// Turn off cursor and put up a wait window
|
// 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();
|
int wascursoron = not vcurhidden();
|
||||||
cursoroff();
|
cursoroff();
|
||||||
|
#endif
|
||||||
|
|
||||||
strcpy(statbak, information);
|
strcpy(statbak, information);
|
||||||
update_statusline(LNG->Wait+1);
|
update_statusline(LNG->Wait+1);
|
||||||
@ -1812,8 +1814,10 @@ void IEclass::savefile(int __status) {
|
|||||||
|
|
||||||
update_statusline(statbak);
|
update_statusline(statbak);
|
||||||
|
|
||||||
|
#if defined(__USE_NCURSES__) || !defined(__WIN32__) /* Fix after bugfix w9x console bug in gvidbase.cpp */
|
||||||
if(wascursoron)
|
if(wascursoron)
|
||||||
cursoron();
|
cursoron();
|
||||||
|
#endif
|
||||||
|
|
||||||
GFTRK(NULL);
|
GFTRK(NULL);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user