Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
ecc418f196 | |||
cc074b3fd5 | |||
be6456975d |
@ -1,3 +1,7 @@
|
|||||||
|
## v1.1.1
|
||||||
|
|
||||||
|
- Fix partial select all
|
||||||
|
|
||||||
## v1.1.0
|
## v1.1.0
|
||||||
|
|
||||||
- Auto initialize Scene Workspaces if empty (on load, on scene change)
|
- Auto initialize Scene Workspaces if empty (on load, on scene change)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
schema_version = "1.0.0"
|
schema_version = "1.0.0"
|
||||||
id = "scene_workspaces"
|
id = "scene_workspaces"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
name = "Scene Workspaces"
|
name = "Scene Workspaces"
|
||||||
tagline = "Filter and sort your workspaces, scene by scene"
|
tagline = "Filter and sort your workspaces, scene by scene"
|
||||||
maintainer = "Francesco Bellini <doc.open.dev@gmail.com>"
|
maintainer = "Francesco Bellini <doc.open.dev@gmail.com>"
|
||||||
|
@ -69,7 +69,7 @@ def select_all():
|
|||||||
workspaces = templates
|
workspaces = templates
|
||||||
else:
|
else:
|
||||||
for w in bpy.data.workspaces:
|
for w in bpy.data.workspaces:
|
||||||
if w not in workspaces:
|
if w.name not in workspaces:
|
||||||
workspaces.append(w.name)
|
workspaces.append(w.name)
|
||||||
set_scene_workspaces(workspaces)
|
set_scene_workspaces(workspaces)
|
||||||
|
|
||||||
|
BIN
releases/1.x.x/scene_workspaces-1.1.1.zip
Normal file
BIN
releases/1.x.x/scene_workspaces-1.1.1.zip
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user