Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateusz Grzeliński <grzelinskimat@gmail.com>2020-08-17 18:47:58 +0300
committerMateusz Grzeliński <grzelinskimat@gmail.com>2020-08-17 18:47:58 +0300
commit34091feca4cf3625bbfa962c84d4eaa0dceacfcf (patch)
treebbf1de02f067f9f88c94974dfb480a6d995836aa /release
parent6b8c5f49a4d78263ef03c1d88f9aeb87cf273567 (diff)
Implement log delete operator
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_info.py b/release/scripts/startup/bl_ui/space_info.py
index af433952864..ebe5edb3e81 100644
--- a/release/scripts/startup/bl_ui/space_info.py
+++ b/release/scripts/startup/bl_ui/space_info.py
@@ -164,7 +164,7 @@ class INFO_MT_context_menu(Menu):
layout.operator("info.clog_copy", text="Copy Message").method = 'COPY_MESSAGE'
layout.operator("info.clog_copy", text="Copy Path").method = 'COPY_PATH'
layout.operator("info.clog_copy", text="Copy Basename").method = 'COPY_BASENAME'
- layout.operator("info.clog_delete", text="Delete (mockup)")
+ layout.operator("info.clog_delete", text="Delete")
layout.separator()
layout.operator("info.clog_filter", text="Mute Selected Files").method = 'FILTER_FILE'
layout.operator("info.clog_filter", text="Mute Selected Lines").method = 'FILTER_LINE'