Default to left justification

This commit is contained in:
Bryan Ashby 2018-01-15 20:31:55 -07:00
parent 827d793a2d
commit 05a93cae89
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ const assert = require('assert');
exports.SpinnerMenuView = SpinnerMenuView;
function SpinnerMenuView(options) {
options.justify = options.justify || 'center';
options.justify = options.justify || 'left';
options.cursor = options.cursor || 'hide';
MenuView.call(this, options);