Textboxes can now be hidden.

SVN revision: 1775
This commit is contained in:
Christian Kreibich 1999-12-27 19:55:30 +00:00
parent 4f0e6bbcde
commit 3ea5ee7eed
2 changed files with 15 additions and 0 deletions

View File

@ -1725,3 +1725,10 @@ work on runtime now, modifying and adding mountpoint types too. Deleting
still needs to be done. Oh, and untested, btw.
Damn. I'm getting sick.
-------------------------------------------------------------------------------
Tue Dec 28 00:31:03 EST 1999
(Christian)
Textboxes can now be hidden.

View File

@ -4460,6 +4460,14 @@ Epplet_gadget_hide(Epplet_gadget gadget)
XUnmapWindow(disp, g->win);
}
break;
case E_TEXTBOX:
{
GadTextBox *g;
g = (GadTextBox *) gadget;
XUnmapWindow(disp, g->win);
}
break;
case E_DRAWINGAREA:
{
GadDrawingArea *g;