forked from bartvdbraak/blender
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:
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);
|
||||
rev_width = BLF_width(revision_str)-7;
|
||||
rev_width = BLF_width(revision_str);
|
||||
#endif NAN_BUILDINFO
|
||||
|
||||
block= uiBeginBlock(C, ar, "_popup", UI_EMBOSS);
|
||||
|
Loading…
Reference in New Issue
Block a user