fix s/hidded/hidden/ typo

This commit is contained in:
Eric Engestrom 2019-05-01 12:40:12 +01:00
parent e8f31a0c4f
commit 4d4562aade
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ window#waybar {
transition-duration: .5s; transition-duration: .5s;
} }
window#waybar.hidded { window#waybar.hidden {
opacity: 0.2; opacity: 0.2;
} }

View File

@ -198,9 +198,9 @@ auto waybar::Bar::toggle() -> void {
visible = !visible; visible = !visible;
auto zone = visible ? height_ : 0; auto zone = visible ? height_ : 0;
if (!visible) { if (!visible) {
window.get_style_context()->add_class("hidded"); window.get_style_context()->add_class("hidden");
} else { } else {
window.get_style_context()->remove_class("hidded"); window.get_style_context()->remove_class("hidden");
} }
zwlr_layer_surface_v1_set_exclusive_zone(layer_surface, zone); zwlr_layer_surface_v1_set_exclusive_zone(layer_surface, zone);
wl_surface_commit(surface); wl_surface_commit(surface);