mirror of
https://git.code.sf.net/p/flwm/flwm
synced 2025-12-12 23:36:58 -05:00
Fix so modal windows don't reappear when you iconize the main window
This commit is contained in:
3
Frame.C
3
Frame.C
@ -1565,7 +1565,8 @@ int Frame::handle(const XEvent* ei) {
|
||||
if (W > max_w+dwidth) max_w = 0;
|
||||
if (H > max_h+dheight) max_h = 0;
|
||||
set_size(X, Y, W, H, 2);
|
||||
if (e->value_mask & CWStackMode && e->detail == Above) raise();
|
||||
if (e->value_mask & CWStackMode && e->detail == Above && state()==NORMAL)
|
||||
raise();
|
||||
return 1;}
|
||||
|
||||
case MapRequest: {
|
||||
|
||||
Reference in New Issue
Block a user