Add missing braces to Editor::cut_copy conditional

This commit is contained in:
nick_m 2017-06-17 03:24:29 +10:00
parent c9617b4b16
commit c54978bd5c

View file

@ -4192,8 +4192,9 @@ Editor::cut_copy (CutCopyOp op)
} }
} }
if ( op != Delete ) //"Delete" doesn't change copy/paste buf if ( op != Delete ) { //"Delete" doesn't change copy/paste buf
cut_buffer->clear (); cut_buffer->clear ();
}
if (entered_marker) { if (entered_marker) {