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:
authorJoshua Leung <aligorith@gmail.com>2016-09-07 16:42:16 +0300
committerJoshua Leung <aligorith@gmail.com>2016-09-07 16:42:16 +0300
commitafd3a55e3e6b5facf348c62595257d1f7cdcce7d (patch)
tree5e724a4a34ab946bb2f1f4e774e66d53d3212e1e
parent19e6321ac0ca4cdc1d421b5de5117c80e2fb14d0 (diff)
GPencil UI: Ensure "Move to Color" can be found from the colors panel dropdwon too
-rw-r--r--release/scripts/startup/bl_ui/properties_grease_pencil_common.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
index b1e9f52b8a6..4299cf6035d 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -772,6 +772,7 @@ class GPENCIL_MT_palettecolor_specials(Menu):
layout.separator()
layout.operator("gpencil.palettecolor_select", icon='COLOR', text="Select Strokes")
+ layout.operator("gpencil.stroke_change_color", icon='MAN_TRANS', text="Move to Color")
class GreasePencilDataPanel: