diff options
author | Guenter Geiger <ggeiger@users.sourceforge.net> | 2004-02-22 19:04:43 +0000 |
---|---|---|
committer | Guenter Geiger <ggeiger@users.sourceforge.net> | 2004-02-22 19:04:43 +0000 |
commit | d17a4f9c58a9160593a0a919b744b1ed1fae7e63 (patch) | |
tree | 501c84bb5167d4930bc5ed8c31a90cc06062703e | |
parent | 65e665e2506907e3e4d0bc94dffcb83f4b6240df (diff) |
fixed ?? GOP behaviour
svn path=/trunk/externals/bbogart/; revision=1338
-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); |