mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-20 21:08:08 +01:00
Fixed bug that caused wmaker to crash when kplayer was switched back from
fullscreen mode to windowed mode.
This commit is contained in:
@@ -74,6 +74,7 @@
|
|||||||
SkipWindowList = Yes;
|
SkipWindowList = Yes;
|
||||||
DontSaveSession = Yes;
|
DontSaveSession = Yes;
|
||||||
Unfocusable = Yes;
|
Unfocusable = Yes;
|
||||||
|
NoAppIcon = Yes;
|
||||||
};
|
};
|
||||||
kio_uiserver = {NoAppIcon = Yes;};
|
kio_uiserver = {NoAppIcon = Yes;};
|
||||||
kcmshell = {NoAppIcon = Yes;};
|
kcmshell = {NoAppIcon = Yes;};
|
||||||
|
|||||||
@@ -862,8 +862,8 @@ typedef struct {
|
|||||||
|
|
||||||
|
|
||||||
#define COPYRIGHT_TEXT \
|
#define COPYRIGHT_TEXT \
|
||||||
"Copyright \xc2\xa9 1997-2004 Alfredo K. Kojima\n"\
|
"Copyright \xc2\xa9 1997-2005 Alfredo K. Kojima\n"\
|
||||||
"Copyright \xc2\xa9 1998-2004 Dan Pascu"
|
"Copyright \xc2\xa9 1998-2005 Dan Pascu"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -2250,10 +2250,10 @@ wWindowSynthConfigureNotify(WWindow *wwin)
|
|||||||
sevent.xconfigure.height = wwin->client.height;
|
sevent.xconfigure.height = wwin->client.height;
|
||||||
|
|
||||||
sevent.xconfigure.border_width = wwin->old_border_width;
|
sevent.xconfigure.border_width = wwin->old_border_width;
|
||||||
if (!HAS_TITLEBAR(wwin))
|
if (HAS_TITLEBAR(wwin) && wwin->frame->titlebar)
|
||||||
sevent.xconfigure.above = None;
|
|
||||||
else
|
|
||||||
sevent.xconfigure.above = wwin->frame->titlebar->window;
|
sevent.xconfigure.above = wwin->frame->titlebar->window;
|
||||||
|
else
|
||||||
|
sevent.xconfigure.above = None;
|
||||||
|
|
||||||
sevent.xconfigure.override_redirect = False;
|
sevent.xconfigure.override_redirect = False;
|
||||||
XSendEvent(dpy, wwin->client_win, False, StructureNotifyMask, &sevent);
|
XSendEvent(dpy, wwin->client_win, False, StructureNotifyMask, &sevent);
|
||||||
|
|||||||
Reference in New Issue
Block a user