Toggle opacity

This commit is contained in:
HardDie 2019-11-28 20:28:28 +03:00
parent 502b33b64a
commit eb4c76f5e4
1 changed files with 2 additions and 0 deletions

View File

@ -295,8 +295,10 @@ auto waybar::Bar::toggle() -> void {
visible = !visible; visible = !visible;
if (!visible) { if (!visible) {
window.get_style_context()->add_class("hidden"); window.get_style_context()->add_class("hidden");
window.set_opacity(0);
} else { } else {
window.get_style_context()->remove_class("hidden"); window.get_style_context()->remove_class("hidden");
window.set_opacity(1);
} }
setExclusiveZone(width_, height_); setExclusiveZone(width_, height_);
wl_surface_commit(surface); wl_surface_commit(surface);