We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AFAICT (apologies, I'm very new to the egui ecosystem and feeling my way around and possibly missing things) if I have nested tabs eg.
egui
let top_level_tab1: TileId = tiles.insert_tab_tile(tabs1); let top_level_tab2: TileId = tiles.insert_tab_tile(tabs2); let top_level_tabs = tiles.insert_tab_tile(vec![top_level_tab1, top_level_tab2]) Container::new_tabs(top_level_tabs)
There's no function to assign a name to top_level_tab1 and top_level_tab2. They're both just labelled "Tabs"
top_level_tab1
top_level_tab2
The text was updated successfully, but these errors were encountered:
egui_tiles/examples/simple.rs
Lines 7 to 12 in f835c4d
Does this fit your use case?
Sorry, something went wrong.
No branches or pull requests
AFAICT (apologies, I'm very new to the
egui
ecosystem and feeling my way around and possibly missing things) if I have nested tabs eg.There's no function to assign a name to
top_level_tab1
andtop_level_tab2
. They're both just labelled "Tabs"The text was updated successfully, but these errors were encountered: