WM: remove tool initialization code

Area initialization handles these cases now.
This commit is contained in:
Campbell Barton
2018-11-28 13:57:21 +11:00
parent ba8c21989c
commit b58d4e7fe4
3 changed files with 2 additions and 37 deletions

View File

@@ -187,7 +187,7 @@ bool ED_workspace_change(
BLI_assert(CTX_wm_workspace(C) == workspace_new);
WM_toolsystem_unlink_all(C, workspace_old);
WM_toolsystem_reinit_all(C, win);
/* Area initialization will initialize based on the new workspace. */
/* Automatic mode switching. */
if (workspace_new->object_mode != workspace_old->object_mode) {

View File

@@ -553,40 +553,10 @@ void WM_toolsystem_init(bContext *C)
LISTBASE_FOREACH (WorkSpace *, workspace, &bmain->workspaces) {
LISTBASE_FOREACH (bToolRef *, tref, &workspace->tools) {
MEM_SAFE_FREE(tref->runtime);
tref->tag = 0;
}
}
for (wmWindowManager *wm = bmain->wm.first; wm; wm = wm->id.next) {
for (wmWindow *win = wm->windows.first; win; win = win->next) {
CTX_wm_window_set(C, win);
WorkSpace *workspace = WM_window_get_active_workspace(win);
bScreen *screen = WM_window_get_active_screen(win);
ViewLayer *view_layer = WM_window_get_active_view_layer(win);
for (ScrArea *sa = screen->areabase.first; sa; sa = sa->next) {
if (((1 << sa->spacetype) & WM_TOOLSYSTEM_SPACE_MASK) == 0) {
continue;
}
const bToolKey tkey = {
.space_type = sa->spacetype,
.mode = WM_toolsystem_mode_from_spacetype(view_layer, sa, sa->spacetype),
};
bToolRef *tref = WM_toolsystem_ref_find(workspace, &tkey);
if (tref) {
if (tref->tag == 0) {
toolsystem_reinit_ref(C, workspace, tref);
tref->tag = 1;
}
}
else {
/* Without this we may load a file without a default tool. */
tref = toolsystem_reinit_ensure_toolref(C, workspace, &tkey, NULL);
tref->tag = 1;
}
}
CTX_wm_window_set(C, NULL);
}
}
/* Rely on screen initialization for gizmos. */
}
int WM_toolsystem_mode_from_spacetype(

View File

@@ -467,11 +467,6 @@ int main(
CTX_py_init_set(C, 1);
WM_keyconfig_init(C);
/* Called on load, however Python is not yet initialized, so call again here. */
if (!G.background) {
WM_toolsystem_init(C);
}
#ifdef WITH_FREESTYLE
/* initialize Freestyle */
FRS_initialize();