Fix for clipped text in splash svn version string - I must have been working around an

extra space at the end of local revision version string.. weird!
This commit is contained in:
Matt Ebb 2010-01-09 00:49:29 +00:00
parent 04dec46c6a
commit d2b27d00ff

@ -961,7 +961,7 @@ static uiBlock *wm_block_create_splash(bContext *C, ARegion *ar, void *arg_unuse
} }
ver_width = BLF_width(version_str); ver_width = BLF_width(version_str);
rev_width = BLF_width(revision_str)-7; rev_width = BLF_width(revision_str);
#endif NAN_BUILDINFO #endif NAN_BUILDINFO
block= uiBeginBlock(C, ar, "_popup", UI_EMBOSS); block= uiBeginBlock(C, ar, "_popup", UI_EMBOSS);