diff options
Diffstat (limited to 'st.c')
| -rw-r--r-- | st.c | 7 |
1 files changed, 5 insertions, 2 deletions
| @@ -241,6 +241,8 @@ static void (*handler[LASTEvent])(XEvent *) = { | |||
| 241 | [VisibilityNotify] = visibility, | 241 | [VisibilityNotify] = visibility, |
| 242 | [UnmapNotify] = unmap, | 242 | [UnmapNotify] = unmap, |
| 243 | [Expose] = expose, | 243 | [Expose] = expose, |
| 244 | [EnterNotify] = focus, | ||
| 245 | [LeaveNotify] = focus, | ||
| 244 | [FocusIn] = focus, | 246 | [FocusIn] = focus, |
| 245 | [FocusOut] = focus, | 247 | [FocusOut] = focus, |
| 246 | [MotionNotify] = bmotion, | 248 | [MotionNotify] = bmotion, |
| @@ -1635,7 +1637,8 @@ xinit(void) { | |||
| 1635 | attrs.bit_gravity = NorthWestGravity; | 1637 | attrs.bit_gravity = NorthWestGravity; |
| 1636 | attrs.event_mask = FocusChangeMask | KeyPressMask | 1638 | attrs.event_mask = FocusChangeMask | KeyPressMask |
| 1637 | | ExposureMask | VisibilityChangeMask | StructureNotifyMask | 1639 | | ExposureMask | VisibilityChangeMask | StructureNotifyMask |
| 1638 | | ButtonMotionMask | ButtonPressMask | ButtonReleaseMask; | 1640 | | ButtonMotionMask | ButtonPressMask | ButtonReleaseMask |
| 1641 | | EnterWindowMask | LeaveWindowMask; | ||
| 1639 | attrs.colormap = xw.cmap; | 1642 | attrs.colormap = xw.cmap; |
| 1640 | 1643 | ||
| 1641 | parent = opt_embed ? strtol(opt_embed, NULL, 0) : XRootWindow(xw.dpy, xw.scr); | 1644 | parent = opt_embed ? strtol(opt_embed, NULL, 0) : XRootWindow(xw.dpy, xw.scr); |
| @@ -1819,7 +1822,7 @@ xseturgency(int add) { | |||
| 1819 | 1822 | ||
| 1820 | void | 1823 | void |
| 1821 | focus(XEvent *ev) { | 1824 | focus(XEvent *ev) { |
| 1822 | if(ev->type == FocusIn) { | 1825 | if(ev->type == FocusIn || ev->type == EnterNotify) { |
| 1823 | xw.state |= WIN_FOCUSED; | 1826 | xw.state |= WIN_FOCUSED; |
| 1824 | xseturgency(0); | 1827 | xseturgency(0); |
| 1825 | } else | 1828 | } else |
