Fix missing newline in the button cycle error print

This commit is contained in:
2015-03-02 14:26:52 +05:00
parent 520646b421
commit 1adfa36f88

View File

@@ -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;
}