From a3912436be3aac10f97e01dcccd348e0533d8088 Mon Sep 17 00:00:00 2001 From: Calvin Chu Date: Thu, 1 Jun 2023 21:38:27 +1000 Subject: [PATCH] hyprland/window: add css class for empty label --- src/modules/hyprland/window.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/modules/hyprland/window.cpp b/src/modules/hyprland/window.cpp index 40b6620..67631d5 100644 --- a/src/modules/hyprland/window.cpp +++ b/src/modules/hyprland/window.cpp @@ -92,6 +92,11 @@ void Window::onEvent(const std::string& ev) { if (windowName == lastView) return; lastView = windowName; + if (windowName[0] == '\0') { + label_.get_style_context()->add_class("empty"); + } else { + label_.get_style_context()->remove_class("empty"); + } spdlog::debug("hyprland window onevent with {}", windowName);