Merge branch 'blender-v2.83-release'

This commit is contained in:
Jacques Lucke 2020-04-21 14:34:22 +02:00
commit 2de0cc5adc
4 changed files with 4 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class ImagePreviewCollection(dict):
def load(self, name, path, path_type, force_reload=False):
if name in self:
raise KeyError("key {name!r} already exists")
raise KeyError(f"key {name!r} already exists")
p = self[name] = _utils_previews.load(
self._gen_key(name), path, path_type, force_reload)
return p

View File

@ -22,6 +22,7 @@
* \brief Iterators used to iterate over the elements of the Curve. Can't be used in python
*/
#include "CurveIterators.h"
#include "Stroke.h"
namespace Freestyle {

View File

@ -23,6 +23,7 @@
*/
#include "Stroke.h"
#include "StrokeIterators.h"
namespace Freestyle {

View File

@ -24,6 +24,7 @@
*/
#include "ViewMap.h"
#include "ViewMapIterators.h"
#include "../system/Iterator.h" //soc