Ver código fonte

applied Troels' patch, thanks Troels!

master
Anselm R Garbe 14 anos atrás
pai
commit
0ba3bae981
1 arquivos alterados com 5 adições e 1 exclusões
  1. +5
    -1
      dmenu.c

+ 5
- 1
dmenu.c Ver arquivo

@@ -658,6 +658,10 @@ run(void) {
if(ev.xexpose.count == 0)
drawmenu();
break;
case VisibilityNotify:
if (ev.xvisibility.state != VisibilityUnobscured)
XRaiseWindow(dpy, win);
break;
}
}

@@ -691,7 +695,7 @@ setup(Bool topbar) {
/* menu window */
wa.override_redirect = True;
wa.background_pixmap = ParentRelative;
wa.event_mask = ExposureMask | ButtonPressMask | KeyPressMask;
wa.event_mask = ExposureMask | ButtonPressMask | KeyPressMask | VisibilityChangeMask;

/* menu window geometry */
mh = dc.font.height + 2;


Carregando…
Cancelar
Salvar