From caeb1747ef812d4ec780bd862bcdd65d55fc386e Mon Sep 17 00:00:00 2001 From: piotr Date: Tue, 16 Jul 2024 01:49:25 +0200 Subject: [PATCH] debug --- nwg_panel/modules/hyprland_workspaces.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nwg_panel/modules/hyprland_workspaces.py b/nwg_panel/modules/hyprland_workspaces.py index f83b651..e89a5db 100644 --- a/nwg_panel/modules/hyprland_workspaces.py +++ b/nwg_panel/modules/hyprland_workspaces.py @@ -7,7 +7,6 @@ from nwg_panel.tools import check_key, update_image_fallback_desktop, hyprctl class HyprlandWorkspaces(Gtk.Box): def __init__(self, settings, monitors, workspaces, clients, activewindow, activeworkspace, icons_path): - print("HyprlandWorkspaces activeworkspace:", activeworkspace) Gtk.Box.__init__(self, orientation=Gtk.Orientation.HORIZONTAL, spacing=0) self.settings = settings self.num_box = Gtk.Box.new(Gtk.Orientation.HORIZONTAL, 0) @@ -23,7 +22,7 @@ class HyprlandWorkspaces(Gtk.Box): self.ws_nums = [] self.build_box() - self.refresh(monitors, workspaces, clients, activewindow, activeworkspace) + # self.refresh(monitors, workspaces, clients, activewindow, activeworkspace) def build_box(self): check_key(self.settings, "num-ws", 10)