diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-10-28 04:10:34 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-10-28 04:10:34 +0800 |
commit | b047f6aa506602910cccc2e81335dd6d5a88fd6c (patch) | |
tree | 99f841a112d34ab45d8139c5e9ff0a53f340c13c | |
parent | 7a955848e5551318467c911b358ccd2343a3a4de (diff) | |
download | gsoc2013-epiphany-b047f6aa506602910cccc2e81335dd6d5a88fd6c.tar gsoc2013-epiphany-b047f6aa506602910cccc2e81335dd6d5a88fd6c.tar.gz gsoc2013-epiphany-b047f6aa506602910cccc2e81335dd6d5a88fd6c.tar.bz2 gsoc2013-epiphany-b047f6aa506602910cccc2e81335dd6d5a88fd6c.tar.lz gsoc2013-epiphany-b047f6aa506602910cccc2e81335dd6d5a88fd6c.tar.xz gsoc2013-epiphany-b047f6aa506602910cccc2e81335dd6d5a88fd6c.tar.zst gsoc2013-epiphany-b047f6aa506602910cccc2e81335dd6d5a88fd6c.zip |
Correctly change the statusbar children's frams's shadow type when the
2004-10-27 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-statusbar.c: (sync_shadow_type), (ephy_statusbar_init):
Correctly change the statusbar children's frams's shadow type when
the statusbar shadow type changes.
-rw-r--r-- | ChangeLog | 7 | ||||
-rwxr-xr-x | src/ephy-statusbar.c | 5 |
2 files changed, 9 insertions, 3 deletions
@@ -1,5 +1,12 @@ 2004-10-27 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-statusbar.c: (sync_shadow_type), (ephy_statusbar_init): + + Correctly change the statusbar children's frams's shadow type when + the statusbar shadow type changes. + +2004-10-27 Christian Persch <chpe@cvs.gnome.org> + * embed/print-dialog.c: (ephy_print_dialog_new): Print dialogue isn't an EphyEmbedDialog anymore, remove the diff --git a/src/ephy-statusbar.c b/src/ephy-statusbar.c index 033a1d28c..2ff4a5e30 100755 --- a/src/ephy-statusbar.c +++ b/src/ephy-statusbar.c @@ -162,7 +162,7 @@ create_statusbar_progress (EphyStatusbar *s) static void sync_shadow_type (EphyStatusbar *statusbar, - GParamSpec *pspec, + GtkStyle *previous_style, gpointer dummy) { GtkShadowType shadow; @@ -206,8 +206,7 @@ ephy_statusbar_init (EphyStatusbar *t) /* FIXME: is this the right way ? */ sync_shadow_type (t, NULL, NULL); - g_signal_connect (t, "notify::shadow-type", - G_CALLBACK (sync_shadow_type), NULL); + g_signal_connect (t, "style-set", G_CALLBACK (sync_shadow_type), NULL); } static void |