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:
authorCampbell Barton <ideasman42@gmail.com>2019-03-12 00:08:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-12 00:08:48 +0300
commit8add03c3b939bbe93249675cdaf9945c8dca3331 (patch)
tree798df84110e2f4e189f3476e6dbc724b1a041ede /release
parentd7e7e9af026e5713de5299fed9b5de463a51f3bc (diff)
UI: correct typo
Also odd parenthesis.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_image.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index 856d3254217..8ce20b9ea3d 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -1284,13 +1284,13 @@ class IMAGE_PT_uv_cursor(Panel):
bl_space_type = 'IMAGE_EDITOR'
bl_region_type = 'UI'
bl_category = "Image"
- bl_label = "3D Cursor"
+ bl_label = "2D Cursor"
@classmethod
def poll(cls, context):
sima = context.space_data
- return (sima and (sima.show_uvedit) or (sima.show_maskedit))
+ return (sima and (sima.show_uvedit or sima.show_maskedit))
def draw(self, context):
layout = self.layout