removed the WKey "Split font" option. It doesnt work and corrupts memory

(saved files cannot read back, they crash).

The implementation of this option was plain accident that it even worked
once... you cannot use the API in blender that way.
This commit is contained in:
2006-12-21 12:36:25 +00:00
parent b12927ecb8
commit fc00e73a83
2 changed files with 5 additions and 2 deletions

View File

@@ -2092,6 +2092,7 @@ void movetolayer(void)
BIF_undo_push("Move to layer");
}
/* THIS IS BAD CODE! do not bring back before it has a real implementation (ton) */
void split_font()
{
Object *ob = OBACT;
@@ -2267,12 +2268,14 @@ void special_editmenu(void)
allqueue(REDRAWVIEW3D, 0);
}
else if (ob->type == OB_FONT) {
nr= pupmenu("Split %t|Characters%x1");
/* removed until this gets a decent implementation (ton) */
/* nr= pupmenu("Split %t|Characters%x1");
if (nr > 0) {
switch(nr) {
case 1: split_font();
}
}
*/
}
}
}