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
path: root/source
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-03-02 12:26:52 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-03-02 12:26:52 +0300
commit1adfa36f88aa3c1273537e1566e166c8401d63e5 (patch)
tree2d894442ce8021a959defd27209b3a71eec7869d /source
parent520646b421e1f03f8fdd440a3a9524eca8cc68a1 (diff)
Fix missing newline in the button cycle error print
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/interface/interface_regions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_regions.c b/source/blender/editors/interface/interface_regions.c
index b6a93c8306d..6e5f6af3c5f 100644
--- a/source/blender/editors/interface/interface_regions.c
+++ b/source/blender/editors/interface/interface_regions.c
@@ -110,7 +110,7 @@ int ui_but_menu_step(uiBut *but, int direction)
{
/* currenly only RNA buttons */
if ((but->rnaprop == NULL) || (RNA_property_type(but->rnaprop) != PROP_ENUM)) {
- printf("%s: cannot cycle button '%s'", __func__, but->str);
+ printf("%s: cannot cycle button '%s'\n", __func__, but->str);
return 0;
}