Skip to content

Commit 23165d7

Browse files
committed
Slicer - Adjustments
1 parent dc4da35 commit 23165d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/atoms/Slicer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ const selectedMap = computed(() => {
188188
const minimapLine = computed(() => {
189189
if(!props.minimap.length) return [];
190190
const max = Math.max(...props.minimap);
191-
const min = Math.min(...props.minimap);
191+
const min = Math.min(...props.minimap) - 10;
192192
const diff = max - (min > 0 ? 0 : min);
193193
const points = props.minimap.map((dp, i) => {
194194
const normalizedVal = dp - min;

0 commit comments

Comments
 (0)