From 678bb61346bc226831ae5b66615bc9a00c355cc5 Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Wed, 19 Jun 2024 11:09:24 -0400 Subject: [PATCH] fix(PlotMapView): default to all layers in plot_pathline() (#2242) --- flopy/plot/map.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flopy/plot/map.py b/flopy/plot/map.py index 27b4677c0d..06473bf7f0 100644 --- a/flopy/plot/map.py +++ b/flopy/plot/map.py @@ -797,7 +797,7 @@ def plot_pathline(self, pl, travel_time=None, **kwargs): else: kon = self.layer else: - kon = self.layer + kon = -1 # configure plot settings marker = kwargs.pop("marker", None)