Move the dialog to a specified position in the terminal. Definition at line 272 of file gui_vfslist.c. 00274 { 00275 gui_lock(); 00276 if (gv->win == NULL) { 00277 gv->win = newwin(height, width, y, x); 00278 } else { 00279 wresize(gv->win, height, width); 00280 mvwin(gv->win, y, x); 00281 } 00282 clearok(gv->win, TRUE); 00283 gui_unlock(); 00284 gv->winheight = height; 00285 00286 gui_vfslist_refresh(gv); 00287 }
Here is the call graph for this function:
![]()
Here is the caller graph for this function:
![]() |
1.6.3