Skip to content

Commit

Permalink
fix godot
Browse files Browse the repository at this point in the history
  • Loading branch information
gucio321 committed Sep 30, 2024
1 parent 342f337 commit 750a462
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion TableWidgets.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ var _ Widget = &TableWidget{}
// TableWidget is a table widget.
// - Call Table to create new
// - Then use Rows method to add content
// - Use Columns method to configure columns (optional)
// - Use Columns method to configure columns (optional).
type TableWidget struct {
id ID
flags TableFlags
Expand Down
4 changes: 2 additions & 2 deletions Widgets.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ type ChildWidget struct {
layout Layout
}

// Child creates a new ChildWidget
// Child creates a new ChildWidget.
func Child() *ChildWidget {
return &ChildWidget{
id: GenAutoID("Child"),
Expand All @@ -80,7 +80,7 @@ func Child() *ChildWidget {
}

// Border sets whether child should have border
// You can use imgui.ChildFlagsBorders as well
// You can use imgui.ChildFlagsBorders as well.
func (c *ChildWidget) Border(border bool) *ChildWidget {
c.border = border
return c
Expand Down

0 comments on commit 750a462

Please sign in to comment.