mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-30 13:04:13 +00:00
refresh navbar elements after init
This commit is contained in:
parent
a591862f1f
commit
b5eecbdec1
@ -11,19 +11,6 @@ Data::Data()
|
|||||||
Gtk::Orientation::VERTICAL
|
Gtk::Orientation::VERTICAL
|
||||||
);
|
);
|
||||||
|
|
||||||
// Init components
|
|
||||||
navbar = new data::Navbar();
|
|
||||||
|
|
||||||
append(
|
|
||||||
* navbar
|
|
||||||
);
|
|
||||||
|
|
||||||
content = new data::Content();
|
|
||||||
|
|
||||||
append(
|
|
||||||
* content
|
|
||||||
);
|
|
||||||
|
|
||||||
// Init actions group
|
// Init actions group
|
||||||
action_group = Gio::SimpleActionGroup::create();
|
action_group = Gio::SimpleActionGroup::create();
|
||||||
|
|
||||||
@ -40,6 +27,23 @@ Data::Data()
|
|||||||
"data",
|
"data",
|
||||||
action_group
|
action_group
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Init components
|
||||||
|
navbar = new data::Navbar();
|
||||||
|
|
||||||
|
append(
|
||||||
|
* navbar
|
||||||
|
);
|
||||||
|
|
||||||
|
// Refresh children elements view (e.g. buttons sensitivity)
|
||||||
|
// because of insert_action_group + append here @TODO
|
||||||
|
navbar->refresh();
|
||||||
|
|
||||||
|
content = new data::Content();
|
||||||
|
|
||||||
|
append(
|
||||||
|
* content
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Data::~Data() = default;
|
Data::~Data() = default;
|
||||||
|
@ -15,10 +15,6 @@ Update::Update()
|
|||||||
set_tooltip_text(
|
set_tooltip_text(
|
||||||
_("Update")
|
_("Update")
|
||||||
);
|
);
|
||||||
|
|
||||||
set_sensitive(
|
|
||||||
false
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Update::~Update() = default;
|
Update::~Update() = default;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user