handle SpaceType and UserPref popups

This commit is contained in:
Xiao Xiangquan
2011-06-20 10:07:46 +00:00
parent 558d549aeb
commit 9a2f36b50f
49 changed files with 946 additions and 815 deletions

View File

@@ -1264,9 +1264,9 @@ static int wm_splash_invoke(bContext *C, wmOperator *UNUSED(op), wmEvent *UNUSED
static void WM_OT_splash(wmOperatorType *ot)
{
ot->name= "Splash Screen";
ot->name= _("Splash Screen");
ot->idname= "WM_OT_splash";
ot->description= "Opens a blocking popup region with release info";
ot->description= _("Opens a blocking popup region with release info");
ot->invoke= wm_splash_invoke;
ot->poll= WM_operator_winactive;