mirror of
https://github.com/elenapan/dotfiles.git
synced 2026-01-09 10:42:41 +08:00
Fixed errors appearing when anti aliasing was disabled
Former-commit-id: 997650801a
Former-commit-id: 5c1df1ac3c5ead603156ad0f2cae2d0a005b7795
Former-commit-id: a9a2258aef1634fba63a10b03e4f2ab163f4a2cd
Former-commit-id: c28ddd310b1ad07dc3f4bfdf2bb3e59e589aa27f
This commit is contained in:
parent
97c23d168e
commit
5048251d05
1 changed files with 2 additions and 2 deletions
|
|
@ -388,8 +388,8 @@ client.connect_signal("request::titlebars", function(c)
|
|||
-- end
|
||||
|
||||
-- Save these here in order to avoid re-evaluating them multiple times
|
||||
local equal_padding = wants_equal_padding(c)
|
||||
local only_borders = wants_only_borders(c)
|
||||
local equal_padding = user.anti_aliasing and wants_equal_padding(c)
|
||||
local only_borders = user.anti_aliasing and wants_only_borders(c)
|
||||
|
||||
-- Top titlebar
|
||||
local titlebar_container = wibox.widget {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue