=bmesh= undo loopcut commit, for some reason the recent merge didn't catch it

This commit is contained in:
2011-05-09 20:43:05 +00:00
parent 5ba0c2c049
commit 6acd2f1138
6 changed files with 12 additions and 34 deletions

View File

@@ -1525,8 +1525,6 @@ int initTransform(bContext *C, TransInfo *t, wmOperator *op, wmEvent *event, int
t->mode = mode;
t->launch_event = event ? event->type : -1;
if (RNA_property_is_set(op->ptr, "launch_event"))
t->launch_event = RNA_int_get(op->ptr, "launch_event");
if (t->launch_event == EVT_TWEAK_R)
{

View File

@@ -499,8 +499,6 @@ void Transform_Properties(struct wmOperatorType *ot, int flags)
// Add confirm method all the time. At the end because it's not really that important and should be hidden only in log, not in keymap edit
/*prop =*/ RNA_def_boolean(ot->srna, "release_confirm", 0, "Confirm on Release", "Always confirm operation when releasing button");
//RNA_def_property_flag(prop, PROP_HIDDEN);
RNA_def_int(ot->srna, "launch_event", -1, 0, INT_MAX, "", "", -1, INT_MAX);
}
void TRANSFORM_OT_translate(struct wmOperatorType *ot)