Details, details...

* Renamed the paint color picker panel to 'Paint' instead of 'Transform Properties'

* Minor label edits to the pivot icon menu
This commit is contained in:
Matt Ebb 2004-07-16 02:10:29 +00:00
parent 688a6de878
commit 146021ea2e
2 changed files with 8 additions and 3 deletions

@ -1467,7 +1467,12 @@ static void view3d_panel_object(short cntrl) // VIEW3D_HANDLER_OBJECT
block= uiNewBlock(&curarea->uiblocks, "view3d_panel_object", UI_EMBOSS, UI_HELV, curarea->win);
uiPanelControl(UI_PNL_SOLID | UI_PNL_CLOSE | cntrl);
uiSetPanelHandler(VIEW3D_HANDLER_OBJECT); // for close and esc
if(uiNewPanel(curarea, block, "Transform Properties", "View3d", 10, 230, 318, 204)==0) return;
if (G.f & (G_VERTEXPAINT|G_TEXTUREPAINT)) {
if(uiNewPanel(curarea, block, "Paint", "View3d", 10, 230, 318, 204)==0) return;
} else {
if(uiNewPanel(curarea, block, "Transform Properties", "View3d", 10, 230, 318, 204)==0) return;
}
if((G.f & (G_VERTEXPAINT|G_TEXTUREPAINT))==0) {
uiDefBut(block, TEX, B_IDNAME, "OB: ", 10,180,140,20, ob->id.name+2, 0.0, 18.0, 0, 0, "");

@ -3363,8 +3363,8 @@ static char *around_pup(void)
strcat(string, "|3D Cursor %x1");
strcat(string, "|Individual Object Centers %x2");
strcat(string, "|%l");
strcat(string, "|Median Point, only Ob Centers %x4");
strcat(string, "|3D Cursor, only Ob Centers %x5");
strcat(string, "|Median Point (Only Object Centers) %x4");
strcat(string, "|3D Cursor (Only Object Centers) %x5");
return (string);
}