mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 12:33:50 +01:00
fix type error when class_name none
This commit is contained in:
parent
7a68a28475
commit
61df9eb62a
@ -31,7 +31,7 @@ def icon_for_window(window):
|
||||
else:
|
||||
# xwayland support
|
||||
class_name = window.window_class
|
||||
if len(class_name) > 0:
|
||||
if class_name is not None and len(class_name) > 0:
|
||||
class_name = class_name.lower()
|
||||
if class_name in WINDOW_ICONS:
|
||||
return WINDOW_ICONS[class_name]
|
||||
|
Loading…
Reference in New Issue
Block a user