diff options
author | Vincent Ambo <mail@tazj.in> | 2023-11-24T23·30+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-11-25T15·31+0000 |
commit | b457217844141707e07c8f05f9b9cd33f7bfa13a (patch) | |
tree | 4c3fad599b9ded3a7729d1826d71f2a26c966cc9 /third_party/exwm/exwm-layout.el | |
parent | e400a9b027248056130877569f7833f37a0c2fd1 (diff) |
fix(3p/exwm): re-enable chromium focus workaround r/7059
This seems to actually sort of work with tab-bar-mode. Change-Id: I7b12b69ec7413ce9b9e1650d8629db8aca8a1796 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10117 Autosubmit: tazjin <tazjin@tvl.su> Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'third_party/exwm/exwm-layout.el')
-rw-r--r-- | third_party/exwm/exwm-layout.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/third_party/exwm/exwm-layout.el b/third_party/exwm/exwm-layout.el index 119431aa8a9b..0cfc47f8a31c 100644 --- a/third_party/exwm/exwm-layout.el +++ b/third_party/exwm/exwm-layout.el @@ -146,8 +146,8 @@ See variable `exwm-layout-auto-iconify'." (exwm--set-geometry id x y width height) (xcb:+request exwm--connection (make-instance 'xcb:MapWindow :window id)) (exwm-layout--set-state id xcb:icccm:WM_STATE:NormalState) - (setq exwm--ewmh-state - (delq xcb:Atom:_NET_WM_STATE_HIDDEN exwm--ewmh-state)) + ;; (setq exwm--ewmh-state + ;; (delq xcb:Atom:_NET_WM_STATE_HIDDEN exwm--ewmh-state)) (exwm-layout--set-ewmh-state id) (exwm-layout--auto-iconify))) (xcb:flush exwm--connection)) @@ -182,7 +182,7 @@ See variable `exwm-layout-auto-iconify'." :window id :value-mask xcb:CW:EventMask :event-mask (exwm--get-client-event-mask))) (exwm-layout--set-state id xcb:icccm:WM_STATE:IconicState) - (cl-pushnew xcb:Atom:_NET_WM_STATE_HIDDEN exwm--ewmh-state) + ;; (cl-pushnew xcb:Atom:_NET_WM_STATE_HIDDEN exwm--ewmh-state) (exwm-layout--set-ewmh-state id) (exwm-layout--auto-iconify) (xcb:flush exwm--connection)))) |