Does it make sense to add fix-width style?
Closed this issue · 2 comments
zengxinhui commented
It's an ugly hack and just an idea. I didn't use normal/bold/italic style and just add the fix-width stuff to last else branch:
themes/default/js/actions.js:
if(text_options['text-style'] == 'normal'){
text_style = 'font-weight: normal;';
}else if( text_options['text-style'] == 'bold'){
text_style = 'font-weight: bold;';
} else if(text_options['text-style'] == 'italic'){
text_style = 'font-style: italic;';
} else {
text_style = 'font-family: monospace;';
}
fallenfuzz commented
fix-width for what? picture plz?
dainok commented
Your patch will be welcomed.