[Bf-committers] small request

Rob Haarsma bf-committers@blender.org
Fri, 20 Dec 2002 17:46:43 +0100


Would one of the maintainers be so kind to add the following at
line 1863 in blender/src/interface.c

			else if(dev==DELKEY) {
				if(but->pos>=0 && but->pos<strlen(str)) {
					for(x=but->pos; x<=strlen(str); x++)
						str[x]= str[x+1];
					str[--len]='\0';
					dodraw= 1;
				}
			}

It's for a functional DELKEY in the textbuttons.

Thanks,

Rob