mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-03-13 06:01:21 +00:00
fix actions list
This commit is contained in:
parent
f41e59ceb1
commit
a2c4389498
@ -52,7 +52,7 @@ impl Browser {
|
||||
&action_tab_pin,
|
||||
));
|
||||
|
||||
let main = Arc::new(Main::new(&action_debug, &action_quit, &action_update));
|
||||
let main = Arc::new(Main::new(&action_tab_page_reload, &action_update));
|
||||
|
||||
// Init widget
|
||||
let widget = ApplicationWindow::builder()
|
||||
|
@ -13,20 +13,13 @@ pub struct Main {
|
||||
|
||||
impl Main {
|
||||
// Construct
|
||||
pub fn new(
|
||||
action_debug: &SimpleAction,
|
||||
action_quit: &SimpleAction,
|
||||
action_update: &SimpleAction,
|
||||
) -> Self {
|
||||
pub fn new(action_tab_page_reload: &SimpleAction, action_update: &SimpleAction) -> Self {
|
||||
// Init components
|
||||
let tab = Arc::new(Tab::new());
|
||||
|
||||
tab.activate(tab.clone());
|
||||
tab.append(Some(GString::from("gemini://geminiprotocol.net/")), true); // demo tab @TODO replace with session restore feature
|
||||
|
||||
// Append demo tab @TODO
|
||||
tab.append(Some(GString::from("gemini://geminiprotocol.net/")), true);
|
||||
|
||||
// Extras
|
||||
// GTK
|
||||
let widget = Box::builder().orientation(Orientation::Vertical).build();
|
||||
|
||||
widget.append(tab.widget());
|
||||
|
Loading…
x
Reference in New Issue
Block a user