From 2d1c14f0360a2a8172c7bdb64f6dbe99197f5c3e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 16 Feb 2019 16:42:11 +1100 Subject: Cleanup: rename SPACE_IPO -> SPACE_GRAPH --- source/blender/windowmanager/intern/wm_window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/windowmanager/intern/wm_window.c') diff --git a/source/blender/windowmanager/intern/wm_window.c b/source/blender/windowmanager/intern/wm_window.c index 9845b335296..47d892853a6 100644 --- a/source/blender/windowmanager/intern/wm_window.c +++ b/source/blender/windowmanager/intern/wm_window.c @@ -947,7 +947,7 @@ wmWindow *WM_window_open_temp(bContext *C, int x, int y, int sizex, int sizey, i ED_area_newspace(C, sa, SPACE_IMAGE, false); } else if (type == WM_WINDOW_DRIVERS) { - ED_area_newspace(C, sa, SPACE_IPO, false); + ED_area_newspace(C, sa, SPACE_GRAPH, false); } else { ED_area_newspace(C, sa, SPACE_USERPREF, false); @@ -967,7 +967,7 @@ wmWindow *WM_window_open_temp(bContext *C, int x, int y, int sizex, int sizey, i title = IFACE_("Blender Preferences"); else if (sa->spacetype == SPACE_FILE) title = IFACE_("Blender File View"); - else if (sa->spacetype == SPACE_IPO) + else if (sa->spacetype == SPACE_GRAPH) title = IFACE_("Blender Drivers Editor"); else title = "Blender"; -- cgit v1.2.3