diff options
author | Sam Spilsbury <sam.spilsbury@canonical.com> | 2011-02-21 17:53:08 +0800 |
---|---|---|
committer | Sam Spilsbury <sam.spilsbury@canonical.com> | 2011-02-21 17:53:08 +0800 |
commit | c8e0fec87d419ce68d71063365bbeef04014d64a (patch) | |
tree | 52735cbd46841967558542ac56466327bc3af1e3 /gtk/window-decorator | |
parent | 89f8dcdf794d1c69b5f53caf30938a1926060274 (diff) | |
download | compiz-with-glib-mainloop-c8e0fec87d419ce68d71063365bbeef04014d64a.tar.gz compiz-with-glib-mainloop-c8e0fec87d419ce68d71063365bbeef04014d64a.tar.bz2 |
Update copyright info
Diffstat (limited to 'gtk/window-decorator')
-rw-r--r-- | gtk/window-decorator/actionmenu.c | 21 | ||||
-rw-r--r-- | gtk/window-decorator/blurprops.c | 21 | ||||
-rw-r--r-- | gtk/window-decorator/cairo.c | 25 | ||||
-rw-r--r-- | gtk/window-decorator/decorator.c | 25 | ||||
-rw-r--r-- | gtk/window-decorator/decorprops.c | 25 | ||||
-rw-r--r-- | gtk/window-decorator/events.c | 25 | ||||
-rw-r--r-- | gtk/window-decorator/forcequit.c | 25 | ||||
-rw-r--r-- | gtk/window-decorator/frames.c | 22 | ||||
-rw-r--r-- | gtk/window-decorator/gdk.c | 21 | ||||
-rw-r--r-- | gtk/window-decorator/gtk-window-decorator.c | 4 | ||||
-rw-r--r-- | gtk/window-decorator/gtk-window-decorator.h | 25 | ||||
-rw-r--r-- | gtk/window-decorator/metacity.c | 25 | ||||
-rw-r--r-- | gtk/window-decorator/settings.c | 35 | ||||
-rw-r--r-- | gtk/window-decorator/style.c | 21 | ||||
-rw-r--r-- | gtk/window-decorator/switcher.c | 25 | ||||
-rw-r--r-- | gtk/window-decorator/tooltip.c | 21 | ||||
-rw-r--r-- | gtk/window-decorator/util.c | 21 | ||||
-rw-r--r-- | gtk/window-decorator/wnck.c | 27 |
18 files changed, 412 insertions, 2 deletions
diff --git a/gtk/window-decorator/actionmenu.c b/gtk/window-decorator/actionmenu.c index 627b766..f1549aa 100644 --- a/gtk/window-decorator/actionmenu.c +++ b/gtk/window-decorator/actionmenu.c @@ -1,3 +1,24 @@ +/* + * Copyright © 2006 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Reveman <davidr@novell.com> + */ + #include "gtk-window-decorator.h" static void diff --git a/gtk/window-decorator/blurprops.c b/gtk/window-decorator/blurprops.c index 6ca3b47..84972ed 100644 --- a/gtk/window-decorator/blurprops.c +++ b/gtk/window-decorator/blurprops.c @@ -1,3 +1,24 @@ +/* + * Copyright © 2006 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Reveman <davidr@novell.com> + */ + #include "gtk-window-decorator.h" void diff --git a/gtk/window-decorator/cairo.c b/gtk/window-decorator/cairo.c index c267253..c600cf1 100644 --- a/gtk/window-decorator/cairo.c +++ b/gtk/window-decorator/cairo.c @@ -1,3 +1,28 @@ +/* + * Copyright © 2006 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Reveman <davidr@novell.com> + * + * 2D Mode: Copyright © 2010 Sam Spilsbury <smspillaz@gmail.com> + * Frames Management: Copright © 2011 Canonical Ltd. + * Authored By: Sam Spilsbury <sam.spilsbury@canonical.com> + */ + #include "gtk-window-decorator.h" void diff --git a/gtk/window-decorator/decorator.c b/gtk/window-decorator/decorator.c index efb2e20..38533d5 100644 --- a/gtk/window-decorator/decorator.c +++ b/gtk/window-decorator/decorator.c @@ -1,3 +1,28 @@ +/* + * Copyright © 2006 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Reveman <davidr@novell.com> + * + * 2D Mode: Copyright © 2010 Sam Spilsbury <smspillaz@gmail.com> + * Frames Management: Copright © 2011 Canonical Ltd. + * Authored By: Sam Spilsbury <sam.spilsbury@canonical.com> + */ + #include "gtk-window-decorator.h" decor_frame_t * diff --git a/gtk/window-decorator/decorprops.c b/gtk/window-decorator/decorprops.c index 9c13edb..92cd36d 100644 --- a/gtk/window-decorator/decorprops.c +++ b/gtk/window-decorator/decorprops.c @@ -1,3 +1,28 @@ +/* + * Copyright © 2006 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Reveman <davidr@novell.com> + * + * 2D Mode: Copyright © 2010 Sam Spilsbury <smspillaz@gmail.com> + * Frames Management: Copright © 2011 Canonical Ltd. + * Authored By: Sam Spilsbury <sam.spilsbury@canonical.com> + */ + #include "gtk-window-decorator.h" void diff --git a/gtk/window-decorator/events.c b/gtk/window-decorator/events.c index 57f9a21..6bbad04 100644 --- a/gtk/window-decorator/events.c +++ b/gtk/window-decorator/events.c @@ -1,3 +1,28 @@ +/* + * Copyright © 2006 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Reveman <davidr@novell.com> + * + * 2D Mode: Copyright © 2010 Sam Spilsbury <smspillaz@gmail.com> + * Frames Management: Copright © 2011 Canonical Ltd. + * Authored By: Sam Spilsbury <sam.spilsbury@canonical.com> + */ + #include "gtk-window-decorator.h" void diff --git a/gtk/window-decorator/forcequit.c b/gtk/window-decorator/forcequit.c index 93ed2f0..adc051e 100644 --- a/gtk/window-decorator/forcequit.c +++ b/gtk/window-decorator/forcequit.c @@ -1,3 +1,28 @@ +/* + * Copyright © 2006 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Reveman <davidr@novell.com> + * + * 2D Mode: Copyright © 2010 Sam Spilsbury <smspillaz@gmail.com> + * Frames Management: Copright © 2011 Canonical Ltd. + * Authored By: Sam Spilsbury <sam.spilsbury@canonical.com> + */ + #include "gtk-window-decorator.h" static char * diff --git a/gtk/window-decorator/frames.c b/gtk/window-decorator/frames.c index 2c188f9..fe378eb 100644 --- a/gtk/window-decorator/frames.c +++ b/gtk/window-decorator/frames.c @@ -1,3 +1,25 @@ +/* + * Copyright © 2011 Canonical Ltd. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Authored by: + * Sam Spilsbury <sam.spilsbury@canonical.com> + */ + #include "gtk-window-decorator.h" typedef struct _decor_frame_type_info diff --git a/gtk/window-decorator/gdk.c b/gtk/window-decorator/gdk.c index 1851a7b..77ead1e 100644 --- a/gtk/window-decorator/gdk.c +++ b/gtk/window-decorator/gdk.c @@ -1,3 +1,24 @@ +/* + * Copyright © 2006 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Reveman <davidr@novell.com> + */ + #include "gtk-window-decorator.h" GdkPixmap * diff --git a/gtk/window-decorator/gtk-window-decorator.c b/gtk/window-decorator/gtk-window-decorator.c index a8b569a..e5888fe 100644 --- a/gtk/window-decorator/gtk-window-decorator.c +++ b/gtk/window-decorator/gtk-window-decorator.c @@ -17,6 +17,10 @@ * Boston, MA 02111-1307, USA. * * Author: David Reveman <davidr@novell.com> + * + * 2D Mode: Copyright © 2009 Sam Spilsbury <smspillaz@gmail.com> + * Frames Management: Copright © 2010 Canonical Ltd. + * Authored By: Sam Spilsbury <sam.spilsbury@canonical.com> */ #include "gtk-window-decorator.h" diff --git a/gtk/window-decorator/gtk-window-decorator.h b/gtk/window-decorator/gtk-window-decorator.h index 4a8980a..109ed03 100644 --- a/gtk/window-decorator/gtk-window-decorator.h +++ b/gtk/window-decorator/gtk-window-decorator.h @@ -1,3 +1,28 @@ +/* + * Copyright © 2006 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Reveman <davidr@novell.com> + * + * 2D Mode: Copyright © 2010 Sam Spilsbury <smspillaz@gmail.com> + * Frames Management: Copright © 2011 Canonical Ltd. + * Authored By: Sam Spilsbury <sam.spilsbury@canonical.com> + */ + #ifndef _GTK_WINDOW_DECORATOR_H #define _GTK_WINDOW_DECORATOR_H #ifdef HAVE_CONFIG_H diff --git a/gtk/window-decorator/metacity.c b/gtk/window-decorator/metacity.c index f9bc0f2..f99bf2b 100644 --- a/gtk/window-decorator/metacity.c +++ b/gtk/window-decorator/metacity.c @@ -1,3 +1,28 @@ +/* + * Copyright © 2006 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Reveman <davidr@novell.com> + * + * 2D Mode: Copyright © 2010 Sam Spilsbury <smspillaz@gmail.com> + * Frames Management: Copright © 2011 Canonical Ltd. + * Authored By: Sam Spilsbury <sam.spilsbury@canonical.com> + */ + #include "gtk-window-decorator.h" #ifdef USE_METACITY diff --git a/gtk/window-decorator/settings.c b/gtk/window-decorator/settings.c index 2bdb0cc..ccc1361 100644 --- a/gtk/window-decorator/settings.c +++ b/gtk/window-decorator/settings.c @@ -1,3 +1,24 @@ +/* + * Copyright © 2006 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Reveman <davidr@novell.com> + */ + #include "gtk-window-decorator.h" /* TODO: Trash all of this and use a window property @@ -334,7 +355,13 @@ titlebar_font_changed (GConfClient *client) if (!str) str = g_strdup ("Sans Bold 12"); - gwd_frames_foreach (set_frames_scales, (gpointer) str); + if (settings->font) + { + g_free (settings->font); + settings->font = g_strdup (str); + } + + gwd_frames_foreach (set_frames_scales, (gpointer) settings->font); g_free (str); } @@ -493,7 +520,9 @@ init_settings (WnckScreen *screen) theme_changed (gconf); theme_opacity_changed (gconf); button_layout_changed (gconf); - titlebar_font_changed (gconf); titlebar_click_action_changed (gconf, + titlebar_font_changed (gconf); + + titlebar_click_action_changed (gconf, COMPIZ_DOUBLE_CLICK_TITLEBAR_KEY, &settings->double_click_action, DOUBLE_CLICK_ACTION_DEFAULT); @@ -507,6 +536,8 @@ init_settings (WnckScreen *screen) RIGHT_CLICK_ACTION_DEFAULT); wheel_action_changed (gconf); blur_settings_changed (gconf); + + g_object_unref (gconf); #endif update_titlebar_font (); diff --git a/gtk/window-decorator/style.c b/gtk/window-decorator/style.c index 481c084..f3d9d50 100644 --- a/gtk/window-decorator/style.c +++ b/gtk/window-decorator/style.c @@ -1,3 +1,24 @@ +/* + * Copyright © 2006 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Reveman <davidr@novell.com> + */ + #include "gtk-window-decorator.h" void diff --git a/gtk/window-decorator/switcher.c b/gtk/window-decorator/switcher.c index af5c1c2..177e4c3 100644 --- a/gtk/window-decorator/switcher.c +++ b/gtk/window-decorator/switcher.c @@ -1,3 +1,28 @@ +/* + * Copyright © 2006 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Reveman <davidr@novell.com> + * + * 2D Mode: Copyright © 2010 Sam Spilsbury <smspillaz@gmail.com> + * Frames Management: Copright © 2011 Canonical Ltd. + * Authored By: Sam Spilsbury <sam.spilsbury@canonical.com> + */ + #include "gtk-window-decorator.h" decor_frame_t * diff --git a/gtk/window-decorator/tooltip.c b/gtk/window-decorator/tooltip.c index 20c9aef..3855448 100644 --- a/gtk/window-decorator/tooltip.c +++ b/gtk/window-decorator/tooltip.c @@ -1,3 +1,24 @@ +/* + * Copyright © 2006 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Reveman <davidr@novell.com> + */ + #include "gtk-window-decorator.h" /* stolen from gtktooltip.c */ diff --git a/gtk/window-decorator/util.c b/gtk/window-decorator/util.c index 7e78703..18d723c 100644 --- a/gtk/window-decorator/util.c +++ b/gtk/window-decorator/util.c @@ -1,3 +1,24 @@ +/* + * Copyright © 2006 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Reveman <davidr@novell.com> + */ + #include "gtk-window-decorator.h" double diff --git a/gtk/window-decorator/wnck.c b/gtk/window-decorator/wnck.c index 166eeb4..1c962e6 100644 --- a/gtk/window-decorator/wnck.c +++ b/gtk/window-decorator/wnck.c @@ -1,3 +1,28 @@ +/* + * Copyright © 2006 Novell, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Reveman <davidr@novell.com> + * + * 2D Mode: Copyright © 2010 Sam Spilsbury <smspillaz@gmail.com> + * Frames Management: Copright © 2011 Canonical Ltd. + * Authored By: Sam Spilsbury <sam.spilsbury@canonical.com> + */ + #include "gtk-window-decorator.h" const gchar * @@ -118,6 +143,8 @@ decorations_changed (WnckScreen *screen) gdkdisplay = gdk_display_get_default (); gdkscreen = gdk_display_get_default_screen (gdkdisplay); + gwd_frames_foreach (set_frames_scales, (gpointer) settings->font); + update_titlebar_font (); gwd_process_frames (update_frames_border_extents, window_type_frames, |