Skip to content

Commit

Permalink
move further left text
Browse files Browse the repository at this point in the history
  • Loading branch information
brauliorivas committed Jul 12, 2024
1 parent db4f5a3 commit 3073c29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/lib/graphic-primitives.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export function drawObjectHeader(ctx, object) {
export function drawObjectInfoTip(ctx, object) {
ctx.save();
const collectionName = "Collection: " + object.collectionName;
const x = object.x + object.width / 2;
const x = object.x;
const y = object.y - 10;
ctx.font = "bold 12px sans-serif";
ctx.fillText(collectionName, x, y);
Expand Down

0 comments on commit 3073c29

Please sign in to comment.