Skip to content

Commit 00447a5

Browse files
committed
Fix - text align menu
1 parent 339ca0c commit 00447a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/gui/menu.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ class JSRootMenu {
484484
const hnames = ['left', 'middle', 'right'], vnames = ['bottom', 'centered', 'top'];
485485
for (let h = 1; h < 4; ++h) {
486486
for (let v = 1; v < 4; ++v)
487-
this.addchk(h*10+v === value, `${h*10+v}: ${hnames[h-1]} ${vnames[h-1]}`, h*10+v, arg => set_func(parseInt(arg)));
487+
this.addchk(h*10+v === value, `${h*10+v}: ${hnames[h-1]} ${vnames[v-1]}`, h*10+v, arg => set_func(parseInt(arg)));
488488
}
489489

490490
this.add('endsub:');

0 commit comments

Comments
 (0)