Skip to content

Commit 7f4bef1

Browse files
committed
Remove my laptop's directory structure from the examples
1 parent 449516e commit 7f4bef1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/client/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func main() {
3131
myNextButton.SetActionHandler(&actionhandlers.TextLabelChangeAction{NewLabel: "8"})
3232
sd.AddButton(7, myNextButton)
3333

34-
anotherButton, err := buttons.NewImageFileButton("/home/kevin/streamdeck/go-streamdeck/examples/test/play.jpg")
34+
anotherButton, err := buttons.NewImageFileButton("examples/test/play.jpg")
3535
if err != nil {
3636
panic(err)
3737
}

examples/test/test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func main() {
3232
panic(err)
3333
}
3434
sd.ClearButtons()
35-
sd.WriteImageToButton(btnIndex, "examples/play.jpg")
35+
sd.WriteImageToButton(btnIndex, "examples/test/play.jpg")
3636
})
3737

3838
var wg sync.WaitGroup

0 commit comments

Comments
 (0)