minibar: fix a mistake the previous bracket fix

This commit is contained in:
hallgren
2013-11-06 16:54:21 +00:00
parent dcbe3533d0
commit 09e64e92e4

View File

@@ -295,5 +295,5 @@ function draw_brackets(b) {
function draw_bracketss(bs) {
return Array.isArray(bs)
? bs.map(draw_brackets) //with gf>3.5, in some cases
: draw_brackets(b) // with gf<=3.5
: draw_brackets(bs) // with gf<=3.5
}