mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
disable tabs expand
This commit is contained in:
parent
9a42f833d4
commit
fc0ea9cfa7
1 changed files with 5 additions and 1 deletions
|
|
@ -9,7 +9,11 @@ impl Widget {
|
|||
// Construct
|
||||
pub fn new_arc(view: &TabView) -> Arc<Self> {
|
||||
Arc::new(Self {
|
||||
gobject: TabBar::builder().view(&view).autohide(false).build(),
|
||||
gobject: TabBar::builder()
|
||||
.autohide(false)
|
||||
.expand_tabs(false)
|
||||
.view(&view)
|
||||
.build(),
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue