summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Williams <pfaedit@users.sourceforge.net>2011-02-25 15:34:46 -0800
committerGeorge Williams <pfaedit@users.sourceforge.net>2011-02-25 15:34:46 -0800
commitb7dc08f4571fb4975e6108aa25f67575d3b61250 (patch)
treeef6071b70bb51036051eea6416d4af0f26f1aa4a
parentdb83bdaa4eadd7794c28af1aa234533b722710a7 (diff)
Oops. Forgot to set the changed flag on the glyph(s).
-rw-r--r--fontforge/charinfo.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/fontforge/charinfo.c b/fontforge/charinfo.c
index 8dcbc20a..b67ff39a 100644
--- a/fontforge/charinfo.c
+++ b/fontforge/charinfo.c
@@ -1422,11 +1422,14 @@ static void CI_ApplyAll(CharInfo *ci) {
PSTFree(sc->possub);
sc->possub = cached->possub;
cached->possub = NULL;
-
#ifdef FONTFORGE_CONFIG_TYPE3
sc->tile_margin = cached->tile_margin;
sc->tile_bounds = cached->tile_bounds;
#endif
+ if ( !sc->changed ) {
+ sc->changed = true;
+ refresh_fvdi = true;
+ }
}
if ( refresh_fvdi ) {
for ( fvs=(FontView *) sf->fv; fvs!=NULL; fvs=(FontView *) fvs->b.next ) {