removed unneeded conditional
This commit is contained in:
parent
74ee0b7d26
commit
b8c668bb44
1 changed files with 1 additions and 4 deletions
|
@ -695,10 +695,7 @@ static bool find_blurred_con_iterator(struct sway_container *con, void *data) {
|
|||
if (!view) {
|
||||
return false;
|
||||
}
|
||||
if (con->blur_enabled && !view->surface->opaque) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
return con->blur_enabled && !view->surface->opaque;
|
||||
}
|
||||
|
||||
bool should_workspace_have_blur(struct sway_workspace *ws) {
|
||||
|
|
Loading…
Add table
Reference in a new issue