mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-04-20 11:35:48 +00:00
chore: remove unnecessary appends
This commit is contained in:
parent
32fc42865f
commit
82dde9750d
1 changed files with 3 additions and 4 deletions
|
@ -125,14 +125,13 @@ impl SimpleComponent for App {
|
|||
set_orientation: gtk::Orientation::Horizontal,
|
||||
set_hexpand: true,
|
||||
set_vexpand: true,
|
||||
append: model.main_view.widget(),
|
||||
append: sep = >k::Separator {
|
||||
model.main_view.widget(),
|
||||
gtk::Separator {
|
||||
set_orientation: gtk::Orientation::Vertical,
|
||||
#[track = "model.changed(App::enable_debug_view())"]
|
||||
set_visible: model.enable_debug_view,
|
||||
},
|
||||
append: model.debug_view.widget(),
|
||||
// append: model.debug_view.widget(),
|
||||
model.debug_view.widget(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue