diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-11-30 15:46:51 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-11-30 15:46:51 +0000 |
commit | 052165cca269587641656e9c9714343f2f5b3cf7 (patch) | |
tree | dce2541676aaa15336fefdf375c47f0c7fc8aa6f /src/options | |
parent | a7df5bda8d5f00fee28a288fb078d936787fe524 (diff) | |
download | zetacomponents-graph-052165cca269587641656e9c9714343f2f5b3cf7.zip zetacomponents-graph-052165cca269587641656e9c9714343f2f5b3cf7.tar.gz |
- Removed initial font path value
Diffstat (limited to 'src/options')
-rw-r--r-- | src/options/font.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/options/font.php b/src/options/font.php index 0f6a3d8..619b8c1 100644 --- a/src/options/font.php +++ b/src/options/font.php @@ -62,7 +62,8 @@ class ezcGraphFontOptions extends ezcBaseOptions public function __construct( array $options = array() ) { $this->properties['name'] = 'sans-serif'; - $this->properties['path'] = 'Graph/tests/data/font.ttf'; +// $this->properties['path'] = 'Graph/tests/data/font.ttf'; + $this->properties['path'] = ''; $this->properties['type'] = ezcGraph::TTF_FONT; $this->properties['minFontSize'] = 6; |