Skip to content

Commit

Permalink
Make arrows bigger in decoupled
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisDavie committed Nov 30, 2023
1 parent 89c7e97 commit 6b57816
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gui/Doors/overview.py
Original file line number Diff line number Diff line change
Expand Up @@ -1101,6 +1101,7 @@ def draw_map(self: DoorPage):
fill="black" if door_link["door"] in INTERIOR_DOORS else link_colours[n],
width=self.linewidth * 0.5 if door_link["door"] in INTERIOR_DOORS else self.linewidth,
arrow=BOTH if not self.experimental_flags["decoupled_doors"] else LAST,
arrowshape=(8, 10, 3) if not self.experimental_flags["decoupled_doors"] else (16, 20, 6),
activefill="red",
dash=(2, 2) if door_link["door"] in INTERIOR_DOORS else (),
tags=["door_link"],
Expand Down Expand Up @@ -1317,6 +1318,7 @@ def draw_latest_door_link(self: DoorPage, loc_name):
fill="black" if last_link["door"] in INTERIOR_DOORS else distinct_colours(1)[0],
width=self.linewidth * 0.5 if last_link["door"] in INTERIOR_DOORS else self.linewidth,
arrow=BOTH if not self.experimental_flags["decoupled_doors"] else LAST,
arrowshape=(8, 10, 3) if not self.experimental_flags["decoupled_doors"] else (16, 20, 6),
activefill="red",
dash=(2, 2) if last_link["door"] in INTERIOR_DOORS else (),
tags=["door_link"],
Expand Down

0 comments on commit 6b57816

Please sign in to comment.