Fixed code error with tab_name_align being assigned 'left'

This commit is contained in:
Wendel Voigt 2015-11-24 10:44:42 -06:00
parent 94f91b5ea2
commit ff9cb6fde9

View File

@ -339,7 +339,7 @@ def calculate_layout(options):
if options.tab_side == "full" and options.tab_name_align == "edge":
# This case does not make sense since there are two tab edges in this case. So picking left edge.
print >>sys.stderr, "** Warning: Aligning card name as 'left' for 'full' tabs **"
options.tab_name_align == "left"
options.tab_name_align = "left"
fixedMargins = False
if options.tabs_only: