Skip to content

Commit a0efcf2

Browse files
committed
fix: Fixed typos that prevented wallpapers from being applied.
1 parent 2d76da1 commit a0efcf2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mewline/widgets/dynamic_island/wallpapers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,10 +377,10 @@ def on_wallpaper_selected(self, iconview, path):
377377
if self.config.x11_method == "feh":
378378
WallpaperApply.apply_with_feh(full_path)
379379
else:
380-
logger.warning(method_not_supported_msg.format(method=self.config.wayland_method))
380+
logger.warning(method_not_supported_msg.format(method=self.config.x11_method))
381381
return
382382
elif WindowManagerContext.is_wayland():
383-
if self.config.method == "swww":
383+
if self.config.wayland_method == "swww":
384384
WallpaperApply.apply_with_swww(full_path)
385385
else:
386386
logger.warning(method_not_supported_msg.format(method=self.config.wayland_method))

0 commit comments

Comments
 (0)