2.5 Outliner - Mouse Clicks work again

A typo in the outliner_active poll() callback meant that the events were being skipped.
This commit is contained in:
Joshua Leung 2008-12-28 22:26:02 +00:00
parent 2529d90985
commit 750bb40de3

@ -98,7 +98,7 @@ int ED_operator_outliner_active(bContext *C)
{
if(ed_spacetype_test(C, SPACE_OOPS)) {
SpaceOops *so= (SpaceOops *)CTX_wm_space_data(C);
return so->spacetype == SO_OUTLINER;
return (so->type == SO_OUTLINER);
}
return 0;
}