Skip to content

Commit

Permalink
rename support to community; more standard and good
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoreilly committed Aug 30, 2024
1 parent c0cde4c commit 6dc5def
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion content/support.md → content/community.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
For questions and support with Cogent Core, you can use the [#cogentcore](https://gophers.slack.com/archives/C07ENRTB2F7) channel on the [Gophers Slack](https://invite.slack.golangbridge.org).
For questions and support, you can use the [#cogentcore](https://gophers.slack.com/archives/C07ENRTB2F7) channel on the [Gophers Slack](https://invite.slack.golangbridge.org).

For bug reports, feature requests, and questions, you can create issues and discussions in our GitHub [repositories](https://github.com/cogentcore).

Expand Down
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ func main() {
})
})
tree.Add(p, func(w *core.Button) {
w.SetText("Sponsor").SetIcon(icons.Favorite)
w.SetText("Community").SetIcon(icons.Forum)
w.OnClick(func(e events.Event) {
pg.Context.OpenURL("https://github.com/sponsors/cogentcore")
pg.Context.OpenURL("/community")
})
})
tree.Add(p, func(w *core.Button) {
w.SetText("Support").SetIcon(icons.Help)
w.SetText("Sponsor").SetIcon(icons.Favorite)
w.OnClick(func(e events.Event) {
pg.Context.OpenURL("/support")
pg.Context.OpenURL("https://github.com/sponsors/cogentcore")
})
})
})
Expand Down

0 comments on commit 6dc5def

Please sign in to comment.