diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2016-07-04 14:47:05 +0000 |
|---|---|---|
| committer | tavmjong-free <tavmjong@free.fr> | 2016-07-04 14:47:05 +0000 |
| commit | be79b33c0c55628f347f2a8418cbd54997050920 (patch) | |
| tree | 7f1f9252e12a6c5c18cb4ad01f724ee4462f8afe /src | |
| parent | Prevent data-losing crash when sorting attributes and Layer dialog open. (diff) | |
| download | inkscape-be79b33c0c55628f347f2a8418cbd54997050920.tar.gz inkscape-be79b33c0c55628f347f2a8418cbd54997050920.zip | |
Fix typo that prevents reading of 'units-per-em'.
(bzr r15008)
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui/dialog/svg-fonts-dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/svg-fonts-dialog.cpp b/src/ui/dialog/svg-fonts-dialog.cpp index a39955123..08ebbcf14 100644 --- a/src/ui/dialog/svg-fonts-dialog.cpp +++ b/src/ui/dialog/svg-fonts-dialog.cpp @@ -497,7 +497,7 @@ SvgFontsDialog::flip_coordinate_system(Geom::PathVector pathv){ for (obj = get_selected_spfont()->children; obj; obj=obj->next){ if (SP_IS_FONTFACE(obj)){ //XML Tree being directly used here while it shouldn't be. - sp_repr_get_double(obj->getRepr(), "units_per_em", &units_per_em); + sp_repr_get_double(obj->getRepr(), "units-per-em", &units_per_em); } } |
