Specifies the wibox dependency on the menubar utils (#1953)
Only this particular module is needed
This commit is contained in:
parent
60b5df1308
commit
2886095358
|
@ -17,7 +17,7 @@ local theme = require("beautiful")
|
||||||
local lgi = require("lgi")
|
local lgi = require("lgi")
|
||||||
local gio = lgi.Gio
|
local gio = lgi.Gio
|
||||||
local glib = lgi.GLib
|
local glib = lgi.GLib
|
||||||
local wibox = require("wibox")
|
local w_textbox = require("wibox.widget.textbox")
|
||||||
local gdebug = require("gears.debug")
|
local gdebug = require("gears.debug")
|
||||||
local protected_call = require("gears.protected_call")
|
local protected_call = require("gears.protected_call")
|
||||||
local gstring = require("gears.string")
|
local gstring = require("gears.string")
|
||||||
|
@ -343,7 +343,7 @@ end
|
||||||
-- @tparam number|screen s Screen
|
-- @tparam number|screen s Screen
|
||||||
-- @treturn int Text width.
|
-- @treturn int Text width.
|
||||||
function utils.compute_text_width(text, s)
|
function utils.compute_text_width(text, s)
|
||||||
local w, _ = wibox.widget.textbox(gstring.xml_escape(text)):get_preferred_size(s)
|
local w, _ = w_textbox(gstring.xml_escape(text)):get_preferred_size(s)
|
||||||
return w
|
return w
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue