diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-10-26 15:12:51 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-10-26 15:12:51 +0100 |
commit | 51bf806933cb08456cb70bfa1763e2dc2619c935 (patch) | |
tree | 89094296cf9eb8095e09b8a1893bbfbc302daebc /src/shutdown-dialog.vala | |
parent | 422c6d06055822f7fd10af7e580d3de5bc99ffc5 (diff) | |
download | arctica-greeter-51bf806933cb08456cb70bfa1763e2dc2619c935.tar.gz arctica-greeter-51bf806933cb08456cb70bfa1763e2dc2619c935.tar.bz2 arctica-greeter-51bf806933cb08456cb70bfa1763e2dc2619c935.zip |
font work: Use Cabin and Cantatell fonts instead of Ubuntu and Ubuntu Light.
Diffstat (limited to 'src/shutdown-dialog.vala')
-rw-r--r-- | src/shutdown-dialog.vala | 6 |
1 files changed, 3 insertions, 3 deletions
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 }); |