* Fix justification 'right' vs 'left': They were flipped (durp!). Right aligned is now really that, etc. You may need to update your theme.hjson/similar!

This commit is contained in:
Bryan Ashby 2018-01-15 16:08:35 -07:00
parent ac1433e84b
commit a8d5e84779
5 changed files with 23 additions and 25 deletions

View file

@ -14,7 +14,7 @@ exports.VerticalMenuView = VerticalMenuView;
function VerticalMenuView(options) {
options.cursor = options.cursor || 'hide';
options.justify = options.justify || 'right'; // :TODO: default to center
options.justify = options.justify || 'left';
MenuView.call(this, options);