Skip to content

Layout Columns issue with heights #121

Open
@flamendless

Description

@flamendless

Code snippet below:

	Slab.BeginWindow("sample", {Title = "Sample", W = 640, AutoSizeWindow = false})
	Slab.BeginLayout("layout", {
		Columns = 2,
		ExpandW = true,
		AlignX = "center",
		AlignRowY = "center",
	})
	for k, v in pairs(test) do
		Slab.SetLayoutColumn(1)
		Slab.Text(k)
		Slab.SetLayoutColumn(2)
		if Slab.Button("up") then
		end
		Slab.SameLine()
		if Slab.Button("down") then
		end
	end
	Slab.EndLayout()
	Slab.EndWindow()

shows
image


DearImGui solves this by allowing SmallButton which takes the same height as font (i assume) so it would be equal to the height of the text.

Another solution I can think of is to make layout columns use the max height.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions