* Fix some handling of height, itemSpacing, etc. in VerticalMenuView

* Change auto scale to be height/width dependent
This commit is contained in:
Bryan Ashby 2015-05-07 16:14:16 -06:00
parent 7fc4858959
commit 37adeb5f90
4 changed files with 19 additions and 44 deletions

View file

@ -119,7 +119,7 @@ function pad(s, len, padChar, dir, stringSGR, padSGR) {
stringSGR = miscUtil.valueWithDefault(stringSGR, '');
padSGR = miscUtil.valueWithDefault(padSGR, '');
var padlen = len - s.length;
var padlen = len >= s.length ? len - s.length : 0;
switch(dir) {
case 'L' :