mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
Move measurement Box to middle again
This commit is contained in:
parent
5ea0b61a44
commit
d7e2cbb108
|
@ -18,6 +18,7 @@ export function usePercentageTool(
|
||||||
const active = ref(false);
|
const active = ref(false);
|
||||||
const closing = ref(false);
|
const closing = ref(false);
|
||||||
const boxHeight = 35;
|
const boxHeight = 35;
|
||||||
|
const boxWidth = 170;
|
||||||
|
|
||||||
function roundTF(timestamp: number) {
|
function roundTF(timestamp: number) {
|
||||||
return roundTimeframe(timeframe_ms.value, timestamp, ROUND_CLOSER);
|
return roundTimeframe(timeframe_ms.value, timestamp, ROUND_CLOSER);
|
||||||
|
@ -75,7 +76,7 @@ export function usePercentageTool(
|
||||||
z: 5,
|
z: 5,
|
||||||
shape: {
|
shape: {
|
||||||
x: startPos.value.x,
|
x: startPos.value.x,
|
||||||
width: 170,
|
width: boxWidth,
|
||||||
y: startPos.value.y,
|
y: startPos.value.y,
|
||||||
height: boxHeight,
|
height: boxHeight,
|
||||||
r: 5,
|
r: 5,
|
||||||
|
@ -136,7 +137,7 @@ export function usePercentageTool(
|
||||||
{
|
{
|
||||||
// Rect containing text ...
|
// Rect containing text ...
|
||||||
shape: {
|
shape: {
|
||||||
x: xr + 5, //startPos.value.x + (xr - startPos.value.x) / 2,
|
x: startPos.value.x + (xr - startPos.value.x) / 2 - boxWidth / 2,
|
||||||
y: y > startPos.value.y ? y - (boxHeight + 5) : y + 9,
|
y: y > startPos.value.y ? y - (boxHeight + 5) : y + 9,
|
||||||
},
|
},
|
||||||
textContent: {
|
textContent: {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user