Skip to content

Commit

Permalink
changes jump drawing for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mchlnix committed Jun 12, 2019
1 parent 8a4e8c3 commit 9758764
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gui/LevelView.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,9 @@ def on_paint(self, event):

if self.jumps:
for jump in self.level.jumps:
dc.SetBrush(wx.Brush(wx.Colour(0xFF, 0x00, 0x00, 0x80)))
dc.SetBrush(
wx.Brush(wx.Colour(0xFF, 0x00, 0x00), wx.BRUSHSTYLE_BDIAGONAL_HATCH)
)

screen = jump.screen_index

Expand Down

0 comments on commit 9758764

Please sign in to comment.