diff options
Diffstat (limited to 'popup')
-rw-r--r-- | popup/popup.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/popup/popup.c b/popup/popup.c index a8fce61..092e198 100644 --- a/popup/popup.c +++ b/popup/popup.c @@ -140,10 +140,8 @@ static void popup_drawme(t_popup *x, t_glist *glist, int firsttime) DEBUG(post("drawme %d",firsttime);) if (firsttime) { DEBUG(post("glist %x canvas %x",x->x_glist,canvas);) - if (x->x_glist != canvas) { - create_widget(x,glist); - x->x_glist = canvas; - } + create_widget(x,glist); + x->x_glist = canvas; sys_vgui(".x%x.c create window %d %d -anchor nw -window .x%x.c.s%x -tags %xS\n", canvas,text_xpix(&x->x_obj, glist), text_ypix(&x->x_obj, glist),x->x_glist,x,x); |