Created
August 12, 2014 04:47
-
-
Save TingPing/02348a9293866fe6c34b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 58ee10baa0273d9bf88963d97d71d94d2fdf9a78 Mon Sep 17 00:00:00 2001 | |
From: TingPing <[email protected]> | |
Date: Tue, 12 Aug 2014 00:45:41 -0400 | |
Subject: [PATCH] Fix coretext warning | |
--- | |
src/libvaladoc/charts/simplechartfactory.vala | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
diff --git a/src/libvaladoc/charts/simplechartfactory.vala b/src/libvaladoc/charts/simplechartfactory.vala | |
index 06da97e..8707d70 100644 | |
--- a/src/libvaladoc/charts/simplechartfactory.vala | |
+++ b/src/libvaladoc/charts/simplechartfactory.vala | |
@@ -25,7 +25,7 @@ | |
public class Valadoc.Charts.SimpleFactory : Charts.Factory { | |
protected virtual Gvc.Node configure_type (Gvc.Node node, Api.Node item) { | |
node.safe_set ("shape", "box", ""); | |
- node.safe_set ("fontname", "Times", ""); | |
+ node.safe_set ("fontname", "Times-Roman", ""); | |
node.safe_set ("label", item.get_full_name (), ""); | |
return node; | |
} | |
-- | |
1.8.5.2 (Apple Git-48) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment