acme: Restore call to movetodel() in colclose
This commit is contained in:
parent
639500b748
commit
b099753597
3 changed files with 20 additions and 6 deletions
|
@ -112,7 +112,7 @@ void
|
|||
colclose(Column *c, Window *w, int dofree)
|
||||
{
|
||||
Rectangle r;
|
||||
int i;
|
||||
int i, didmouse, up;
|
||||
|
||||
/* w is locked */
|
||||
if(!c->safe)
|
||||
|
@ -126,7 +126,7 @@ colclose(Column *c, Window *w, int dofree)
|
|||
w->tag.col = nil;
|
||||
w->body.col = nil;
|
||||
w->col = nil;
|
||||
restoremouse(w);
|
||||
didmouse = restoremouse(w);
|
||||
if(dofree){
|
||||
windelete(w);
|
||||
winclose(w);
|
||||
|
@ -138,17 +138,24 @@ colclose(Column *c, Window *w, int dofree)
|
|||
draw(screen, r, display->white, nil, ZP);
|
||||
return;
|
||||
}
|
||||
up = 0;
|
||||
if(i == c->nw){ /* extend last window down */
|
||||
w = c->w[i-1];
|
||||
r.min.y = w->r.min.y;
|
||||
r.max.y = c->r.max.y;
|
||||
}else{ /* extend next window up */
|
||||
up = 1;
|
||||
w = c->w[i];
|
||||
r.max.y = w->r.max.y;
|
||||
}
|
||||
draw(screen, r, textcols[BACK], nil, ZP);
|
||||
if(c->safe)
|
||||
if(c->safe) {
|
||||
if(!didmouse && up)
|
||||
w->showdel = TRUE;
|
||||
winresize(w, r, FALSE);
|
||||
if(!didmouse && up)
|
||||
movetodel(w);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
@ -19,10 +19,11 @@ void undo(Text*, Text*, Text*, int, int, Rune*, int);
|
|||
char* getname(Text*, Text*, Rune*, int, int);
|
||||
void scrsleep(uint);
|
||||
void savemouse(Window*);
|
||||
void restoremouse(Window*);
|
||||
int restoremouse(Window*);
|
||||
void clearmouse(void);
|
||||
void allwindows(void(*)(Window*, void*), void*);
|
||||
uint loadfile(int, uint, int*, int(*)(void*, uint, Rune*, int), void*);
|
||||
void movetodel(Window*);
|
||||
|
||||
Window* errorwin(Mntdir*, int);
|
||||
Window* errorwinforwin(Window*);
|
||||
|
|
|
@ -367,12 +367,18 @@ savemouse(Window *w)
|
|||
mousew = w;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
restoremouse(Window *w)
|
||||
{
|
||||
if(mousew!=nil && mousew==w)
|
||||
int did;
|
||||
|
||||
did = 0;
|
||||
if(mousew!=nil && mousew==w) {
|
||||
moveto(mousectl, prevmouse);
|
||||
did = 1;
|
||||
}
|
||||
mousew = nil;
|
||||
return did;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue