We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb36a2b commit 3caff8aCopy full SHA for 3caff8a
1 file changed
plugins/warp/src/plugin/workflow.rs
@@ -174,13 +174,17 @@ pub fn insert_workflow() {
174
let bn_comment = comment_to_bn_comment(&function, comment);
175
function.set_comment_at(bn_comment.addr, &bn_comment.comment);
176
}
177
- function.add_tag(
178
- &get_warp_tag_type(&view),
179
- &matched_function.guid.to_string(),
180
- None,
181
- false,
182
183
- );
+ // TODO: Fix this before release.
+ // TODO: Any attempt to add a tag type will create a undo action
+ // TODO: Those are currently not thread safe when running in headless python.
+ // TODO: See Mason for more lore.
+ // function.add_tag(
+ // &get_warp_tag_type(&view),
+ // &matched_function.guid.to_string(),
184
+ // None,
185
+ // false,
186
187
+ // );
188
189
};
190
0 commit comments