tooltips: re-place them on width/height changes
If the dimensions of a tooltip change, e.g. after the text has been changed, they are now placed again.
This commit is contained in:
parent
66c4ff7f2c
commit
05da320c28
|
@ -275,6 +275,10 @@ tooltip.new = function(args)
|
|||
-- emit the release event on an underlying object, e.g. the titlebar icon.
|
||||
self.wibox:buttons(abutton({}, 1, nil, function() data[self].hide() end))
|
||||
|
||||
-- Re-place when the geometry of the wibox changes.
|
||||
self.wibox:connect_signal("property::width", function() place(self) end)
|
||||
self.wibox:connect_signal("property::height", function() place(self) end)
|
||||
|
||||
-- Add tooltip to objects
|
||||
if args.objects then
|
||||
for _, object in ipairs(args.objects) do
|
||||
|
|
Loading…
Reference in New Issue