[Bf-blender-cvs] CVS commit: blender/source/blender/src interface.c

Campbell Barton cbarton at metavr.com
Mon Jan 9 16:24:23 CET 2006


campbellbarton (Campbell Barton) 2006/01/09 16:24:23 CET

  Modified files:
    blender/source/blender/src interface.c 
  
  Log:
  There was a problem with typing over text selections, where you had an object with 21 letter name (19 is the max but 21 is supported, just copy a mesh a few times)
  After this click on the object name and start typing, even though the selection makes it that the new string would be overwritten, it dosent let you type in any text.
  
  from
  if(len <= but->max) {
  to...
  if(len-SELWIDTH+1 <= but->max) {
  
  - Tested and works well.
  
  Revision  Changes    Path
  1.219     +3 -2      blender/source/blender/src/interface.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/src/interface.c.diff?r1=1.218&r2=1.219&cvsroot=bf-blender>



More information about the Bf-blender-cvs mailing list