diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2005-02-23 04:55:58 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2005-02-23 04:55:58 +0000 |
commit | 4a65e0dcd504848ee89dfe3d12321e2587b2a77d (patch) | |
tree | 652fd67bc01083b476e65043bb3d0160d1239516 /externals/grill/flext/source | |
parent | 3d2c0b82fb2192cc3295dd0f64b09163db6b63ef (diff) |
fix lines on box text change
svn path=/trunk/; revision=2572
Diffstat (limited to 'externals/grill/flext/source')
-rw-r--r-- | externals/grill/flext/source/flattr_ed.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/externals/grill/flext/source/flattr_ed.cpp b/externals/grill/flext/source/flattr_ed.cpp index cf625e7c..6e13e71c 100644 --- a/externals/grill/flext/source/flattr_ed.cpp +++ b/externals/grill/flext/source/flattr_ed.cpp @@ -617,7 +617,7 @@ void flext_base::cb_GfxVis(t_gobj *c, t_glist *gl, int vis) } } -void flext_base::cb_GfxSelect(t_gobj *c, struct _glist *gl, int state) +void flext_base::cb_GfxSelect(t_gobj *c,t_glist *gl,int state) { // show object if it's not a GOP if(!gl->gl_isgraph || gl->gl_havewindow) { @@ -642,6 +642,9 @@ void flext_base::cb_GfxSelect(t_gobj *c, struct _glist *gl, int state) t_rtext *rt = glist_findrtext(gl,x); rtext_retext(rt); + + // fix lines + canvas_fixlinesfor(gl,x); } // call original function |