Fixed 'max() iterable argument is empty'

This commit is contained in:
Dillon DuPont
2025-06-04 09:58:13 -04:00
parent c2302eb6c6
commit 4693f2f0eb

View File

@@ -377,7 +377,7 @@ def draw_desktop_screenshot(app_whitelist: List[str] = None, all_windows: List[D
dock_orientation = "side" if dock_bounds["width"] < dock_bounds["height"] else "bottom"
menubar_length = max(item["bounds"]["x"] + item["bounds"]["width"] for item in menubar_items)
menubar_length = max(item["bounds"]["x"] + item["bounds"]["width"] for item in menubar_items) if menubar_items else 0
# Calculate bounds of app windows
app_bounds = {