diff options
author | Peter Palfrader <peter@palfrader.org> | 2019-09-03 10:16:25 +0200 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2019-09-03 10:16:25 +0200 |
commit | 17e6b97ee927a9c9d827a139ca8e072762839cb2 (patch) | |
tree | 2fa3c3c64641cf10d7d9adbecccbbca285c966cb | |
parent | b02ebf7d67a9925bbd522265eda61030f2d8b4e9 (diff) |
replace deprecated awful.mouse.client_under_pointer() with mouse.current_client
-rw-r--r-- | config/awesome/rc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/awesome/rc.lua b/config/awesome/rc.lua index a88c49e..00165ce 100644 --- a/config/awesome/rc.lua +++ b/config/awesome/rc.lua @@ -707,7 +707,7 @@ tag.connect_signal( if selected then if not do_not_reset_focus then gears.timer.delayed_call( function() - local c = awful.mouse.client_under_pointer() + local c = mouse.current_client if not (c == nil) then client.focus = c end |