Regression test fixes:

- New Softbody panel now is named "Soft Body Collision" (instead of II)
  Also made it start tabbed, and made Fluids panel start untabbed.

- Infowindow: skip drawing buttons when width is smaller than 320 pixels.
This commit is contained in:
2007-02-14 11:00:05 +00:00
parent c7a8f6cd9d
commit 0bb0c54f4b
3 changed files with 8 additions and 7 deletions

View File

@@ -2962,6 +2962,9 @@ void drawinfospace(ScrArea *sa, void *spacedata)
glClearColor(col[0], col[1], col[2], 0.0);
glClear(GL_COLOR_BUFFER_BIT);
/* smaller buttons make no sense */
if(curarea->winx<320) return;
if(curarea->winx<=1280.0) {
fac= ((float)curarea->winx)/1280.0f;
myortho2(0.375f, 1280.375f, 0.375f, curarea->winy/fac + 0.375f);