1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-21 05:18:06 +01:00

Added some fixes from people, and updated Changelog about this.

This commit is contained in:
dan
1999-04-20 20:56:30 +00:00
parent da4fc6b3a8
commit cef3b29d94
3 changed files with 7 additions and 2 deletions

View File

@@ -29,6 +29,10 @@ Changes since version 0.52.0:
- fixed crash with InfoPanel in multihead dpy - fixed crash with InfoPanel in multihead dpy
- Fixed bug in WPrefs that added a new line at the end of autostart script - Fixed bug in WPrefs that added a new line at the end of autostart script
at every save, growing it indefinitely. at every save, growing it indefinitely.
- fixed a memory leak in wrlib (Wolfram Gloger <wmglo@dent.med.uni-muenchen.de>)
- fixed crash during forced shutdown of X (Wolfram Gloger
<wmglo@dent.med.uni-muenchen.de>)
Changes since version 0.51.2: Changes since version 0.51.2:
............................. .............................

View File

@@ -928,6 +928,7 @@ wIconifyWindow(WWindow *wwin)
wwin->icon = wIconCreate(wwin); wwin->icon = wIconCreate(wwin);
} }
if (wwin->icon)
wwin->icon->mapped = 1; wwin->icon->mapped = 1;
wwin->flags.miniaturized = 1; wwin->flags.miniaturized = 1;
wwin->flags.mapped = 0; wwin->flags.mapped = 0;

View File

@@ -203,7 +203,7 @@ catchXError(Display *dpy, XErrorEvent *error)
*---------------------------------------------------------------------- *----------------------------------------------------------------------
*/ */
static int static int
handleXIO(Display *dpy) handleXIO(Display *xio_dpy)
{ {
dpy = NULL; dpy = NULL;
Exit(0); Exit(0);