diff --git a/content/buffer.js b/content/buffer.js index b634dc26..43e9b7e3 100644 --- a/content/buffer.js +++ b/content/buffer.js @@ -1836,8 +1836,8 @@ liberator.Marks = function () //{{{ let list = liberator.template.tabular(["mark", "line", "col", "file"], ["", "text-align: right", "text-align: right", "color: green"], ([mark[0], - Math.round(mark[1].position.x & 100) + "%", - Math.round(mark[1].position.y & 100) + "%", + Math.round(mark[1].position.x * 100) + "%", + Math.round(mark[1].position.y * 100) + "%", mark[1].location] for each (mark in marks))); liberator.commandline.echo(list, liberator.commandline.HL_NORMAL, liberator.commandline.FORCE_MULTILINE);