Skip to content

Commit

Permalink
fix(util/separators): Not following theme
Browse files Browse the repository at this point in the history
Fix issue lcpz#485 `lain.util.separators` not following theme variables
separators_width and separators_height as stated in the wiki
  • Loading branch information
DemonInTheCloset committed Jun 24, 2022
1 parent 1703661 commit d1ee275
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion util/separators.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@

local wibox = require("wibox")
local gears = require("gears")
local beautiful = require("beautiful")

-- Lain Cairo separators util submodule
-- lain.util.separators
local separators = { height = 0, width = 9 }
local separators = { height = (beautiful.separators_height or 0), width = (beautiful.separators_width or 9) }

-- [[ Arrow

Expand Down

0 comments on commit d1ee275

Please sign in to comment.