Skip to content

Commit

Permalink
fix(#485): Separators not following theme (#535)
Browse files Browse the repository at this point in the history
* fix(util/separators): Not following theme

Fix issue #485 `lain.util.separators` not following theme variables
separators_width and separators_height as stated in the wiki

* fix: Removed redundant parenthesis
  • Loading branch information
DemonInTheCloset authored Jun 25, 2022
1 parent 1703661 commit c489aa6
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 c489aa6

Please sign in to comment.