Merge branch 'tooltips-replace-on-geometry-changes' of https://github.com/blueyed/awesome

This commit is contained in:
Uli Schlachter 2015-08-23 15:27:10 +02:00
commit 190beb3e8e
1 changed files with 4 additions and 0 deletions

View File

@ -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