diff options
Diffstat (limited to 'src/ephy-statusbar.c')
-rwxr-xr-x | src/ephy-statusbar.c | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/ephy-statusbar.c b/src/ephy-statusbar.c index 016ac5044..310244f80 100755 --- a/src/ephy-statusbar.c +++ b/src/ephy-statusbar.c @@ -111,9 +111,9 @@ create_statusbar_security_icon (EphyStatusbar *s) gtk_widget_show_all (s->security_frame); - gtk_box_pack_start (GTK_BOX (s), - GTK_WIDGET (s->security_frame), - FALSE, TRUE, 0); + gtk_box_pack_end (GTK_BOX (s), + GTK_WIDGET (s->security_frame), + FALSE, TRUE, 0); } static void @@ -190,3 +190,13 @@ ephy_statusbar_set_progress (EphyStatusbar *t, fraction); } } + +void +ephy_statusbar_add_widget (EphyStatusbar *statusbar, + GtkWidget *widget) +{ + g_return_if_fail (EPHY_IS_STATUSBAR (statusbar)); + g_return_if_fail (GTK_IS_WIDGET (widget)); + + gtk_box_pack_start (GTK_BOX (statusbar), widget, FALSE, FALSE, 0); +} |