Skip to content

Commit

Permalink
make testing window invisible
Browse files Browse the repository at this point in the history
  • Loading branch information
cebarks committed Aug 17, 2021
1 parent 552871e commit d5761bd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pixel_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ func TestSprite_Draw(t *testing.T) {
sprite := pixel.NewSprite(pic, pic.Bounds())

cfg := pixelgl.WindowConfig{
Title: "testing",
Bounds: pixel.R(0, 0, 150, 150),
Title: "testing",
Bounds: pixel.R(0, 0, 150, 150),
Invisible: true,
}

win, err := pixelgl.NewWindow(cfg)
Expand Down

0 comments on commit d5761bd

Please sign in to comment.