removed a goto

This commit is contained in:
phillbush 2020-05-27 15:10:53 -03:00
parent c6d9174ec2
commit cdc4d51fee

View File

@ -555,7 +555,8 @@ mapmenu(struct Menu *currmenu)
/* if this is the first time mapping, skip calculations */ /* if this is the first time mapping, skip calculations */
if (prevmenu == NULL) { if (prevmenu == NULL) {
XMapWindow(dpy, currmenu->win); XMapWindow(dpy, currmenu->win);
goto done; prevmenu = currmenu;
return;
} }
/* find lowest common ancestor menu */ /* find lowest common ancestor menu */
@ -587,7 +588,6 @@ mapmenu(struct Menu *currmenu)
XMapWindow(dpy, menu->win); XMapWindow(dpy, menu->win);
} }
done:
prevmenu = currmenu; prevmenu = currmenu;
} }
@ -611,7 +611,7 @@ drawitem(struct Menu *menu, struct Item *item, XftColor *color)
{ {
int x, y; int x, y;
x = 0 + dc.font->height; x = dc.font->height;
y = item->y + item->h/2 + dc.font->ascent/2 - 1; y = item->y + item->h/2 + dc.font->ascent/2 - 1;
XSetForeground(dpy, dc.gc, color[ColorFG].pixel); XSetForeground(dpy, dc.gc, color[ColorFG].pixel);
XftDrawStringUtf8(menu->draw, &color[ColorFG], dc.font, XftDrawStringUtf8(menu->draw, &color[ColorFG], dc.font,