mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
Partly revert commit 90fde1393f
That commit made awful.tag use timer.delayed_call() to call withcurrent() during the manage signal. The idea was "if nothing else assigns any tags until the end, apply some default ones". However, the C core refuses to set the input focus to an unviewable client and thus this means that setting the input focus during manage failed. So, instead of using the delayed_call(), just call withcurrent() directly, like we did before. However, some part of that commit is still left: Awful.rules no longer disconnects the withcurrent() callback from the "manage" signal. This was originally added in commit5e7ddd1efa
, because it clients flickered otherwise if they were moved to some unselected tag during "manage". This happened because the C code unbanned the client when it got assigned the input focus and only later did some other code move it to some unselected tag. However, this flickering will no longer occur, because commit3dbf89c990
added lazy focus setting. Thanks to this, setting the focus no longer unbans a client as a side-effect. Thus, if you focus a client and then remove it from all selected tags, nothing will be visible on-screen. To make a long story short: This commit reverts the part of commit90fde1393f
which caused side effects. The part that wasn't necessary any more is left in. Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
532c113e1f
commit
254e50d88c
1 changed files with 1 additions and 3 deletions
|
@ -630,9 +630,7 @@ capi.client.connect_signal("manage", function(c)
|
|||
c:connect_signal("property::screen", tag.withcurrent)
|
||||
end)
|
||||
|
||||
capi.client.connect_signal("manage", function(c)
|
||||
timer.delayed_call(tag.withcurrent, c)
|
||||
end)
|
||||
capi.client.connect_signal("manage", tag.withcurrent)
|
||||
capi.tag.connect_signal("request::select", tag.viewonly)
|
||||
|
||||
capi.tag.add_signal("property::hide")
|
||||
|
|
Loading…
Reference in a new issue