The toolbar buttons are generated with no possible line break, so if the 
viewer area is narrow (e.g. for a mobile device theme) the toolbar will 
wrap in the middle of a button instead of between buttons. 

A super easy fix is to append a space after each button in:
config.macros.toolbar.createCommand() 

i.e. after: 

                        place.appendChild(btn);
add:
                        var e = document.createTextNode(" ");
                        place.appendChild(e);


(this is with 2.8.1)

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywikidev.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to