From 51bf806933cb08456cb70bfa1763e2dc2619c935 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Mon, 26 Oct 2015 15:12:51 +0100 Subject: font work: Use Cabin and Cantatell fonts instead of Ubuntu and Ubuntu Light. --- src/shutdown-dialog.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/shutdown-dialog.vala') diff --git a/src/shutdown-dialog.vala b/src/shutdown-dialog.vala index cccd534..bf0a2b4 100644 --- a/src/shutdown-dialog.vala +++ b/src/shutdown-dialog.vala @@ -104,7 +104,7 @@ public class ShutdownDialog : Gtk.Fixed { var title_label = new Gtk.Label (_("Shut Down")); title_label.visible = true; - title_label.override_font (Pango.FontDescription.from_string ("Ubuntu Light 15")); + title_label.override_font (Pango.FontDescription.from_string ("Cantarell 15")); title_label.override_color (Gtk.StateFlags.NORMAL, { 1.0f, 1.0f, 1.0f, 1.0f }); title_label.set_alignment (0.0f, 0.5f); vbox.pack_start (title_label, false, false, 0); @@ -138,7 +138,7 @@ public class ShutdownDialog : Gtk.Fixed var label = new Gtk.Label (text); label.set_line_wrap (true); - label.override_font (Pango.FontDescription.from_string ("Ubuntu Light 12")); + label.override_font (Pango.FontDescription.from_string ("Cantarell 12")); label.override_color (Gtk.StateFlags.NORMAL, { 1.0f, 1.0f, 1.0f, 1.0f }); label.set_alignment (0.0f, 0.5f); label.visible = true; @@ -558,7 +558,7 @@ private class DialogButton : Gtk.Button if (l != null) { l.visible = true; - l.override_font (Pango.FontDescription.from_string ("Ubuntu Light 12")); + l.override_font (Pango.FontDescription.from_string ("Cantarell 12")); l.override_color (Gtk.StateFlags.NORMAL, { 1.0f, 1.0f, 1.0f, 0.0f }); l.override_color (Gtk.StateFlags.FOCUSED, { 1.0f, 1.0f, 1.0f, 1.0f }); l.override_color (Gtk.StateFlags.ACTIVE, { 1.0f, 1.0f, 1.0f, 1.0f }); -- cgit v1.2.3