Skip to content

Commit

Permalink
Tests: update default plot dialog size to 640x480
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreRaybaut committed Aug 2, 2024
1 parent 7cc1c7f commit 800de5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plotpy/tests/vistools.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def show_items(
winsize: tuple[int, int] | None = None,
) -> PlotDialog:
"""Show plot items in a dialog box"""
winsize = (800, 600) if winsize is None else winsize
winsize = (640, 480) if winsize is None else winsize
win = make.dialog(
edit=False,
toolbar=True,
Expand Down

0 comments on commit 800de5d

Please sign in to comment.