diff options
author | Alexander Mikhaylenko <alexm@gnome.org> | 2021-12-01 13:59:08 +0500 |
---|---|---|
committer | Marge Bot <marge-bot@gnome.org> | 2021-12-02 16:56:50 +0000 |
commit | 0ce65d4f0474c036af062b81172a5cac3603380c (patch) | |
tree | c89a1f3446fe2136499443d7da3a42f4fafbabe3 /embed | |
parent | 563b03a3f54a58f9ede696c54fbe446ccdf34e38 (diff) | |
download | epiphany-0ce65d4f0474c036af062b81172a5cac3603380c.tar.gz |
nautilus-floating-bar: Trim down
It can do things such as show a spinner, a secondary label or actions.
Remove all of that, only leave what we actually use.
Part-of: <https://gitlab.gnome.org/GNOME/epiphany/-/merge_requests/1038>
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-embed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index 77743f257..3d81f8783 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -738,7 +738,7 @@ ephy_embed_constructed (GObject *object) ephy_embed_set_fullscreen_message (embed, FALSE); /* statusbar is hidden by default */ - embed->floating_bar = nautilus_floating_bar_new (NULL, NULL, FALSE); + embed->floating_bar = nautilus_floating_bar_new (); gtk_widget_set_halign (embed->floating_bar, GTK_ALIGN_START); gtk_widget_set_valign (embed->floating_bar, GTK_ALIGN_END); gtk_widget_set_no_show_all (embed->floating_bar, TRUE); |