Skip to content

Commit 4b84cbc

Browse files
committed
update stub files
1 parent 45accc8 commit 4b84cbc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/matplotlib/axes/_base.pyi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ class _AxesBase(martist.Artist):
7575
xscale: str | ScaleBase | None = ...,
7676
yscale: str | ScaleBase | None = ...,
7777
box_aspect: float | None = ...,
78+
forward_navigation_events: bool | Literal["auto"] = ...,
7879
**kwargs
7980
) -> None: ...
8081
def get_subplotspec(self) -> SubplotSpec | None: ...
@@ -363,6 +364,8 @@ class _AxesBase(martist.Artist):
363364
def can_pan(self) -> bool: ...
364365
def get_navigate(self) -> bool: ...
365366
def set_navigate(self, b: bool) -> None: ...
367+
def get_forward_navigation_events(self) -> bool | Literal["auto"]: ...
368+
def set_forward_navigation_events(self, forward: bool | Literal["auto"]) -> None: ...
366369
def get_navigate_mode(self) -> Literal["PAN", "ZOOM"] | None: ...
367370
def set_navigate_mode(self, b: Literal["PAN", "ZOOM"] | None) -> None: ...
368371
def start_pan(self, x: float, y: float, button: MouseButton) -> None: ...

0 commit comments

Comments
 (0)