Skip to content

Commit

Permalink
fix: bed mesh calibrate dialog not opening on mobile (#858)
Browse files Browse the repository at this point in the history
  • Loading branch information
dw-0 authored May 29, 2022
1 parent b6f0020 commit e0fd25c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/pages/Heightmap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<div>
<v-row v-if="klipperReadyForGui">
<v-col class="col-12 col-md-8 pb-0">
<panel card-class="heightmap-map-panel" :title="$t('Heightmap.Heightmap')" :icon="mdiGrid">
<panel card-class="heightmap-map-panel" :title="$t('Heightmap.Heightmap').toString()" :icon="mdiGrid">
<template #buttons>
<v-btn
icon
Expand Down Expand Up @@ -115,7 +115,7 @@
:loading="loadings.includes('bedMeshCalibrate')"
:disabled="printerIsPrinting"
:title="$t('Heightmap.TitleCalibrate')"
@click="calibrateDialog = true">
@click="openCalibrateMesh">
{{ $t('Heightmap.Calibrate') }}
</v-btn>
</v-item-group>
Expand Down Expand Up @@ -190,7 +190,7 @@
<v-col class="col-12 col-md-4">
<panel
v-if="currentProfile"
:title="$t('Heightmap.CurrentMesh.Headline')"
:title="$t('Heightmap.CurrentMesh.Headline').toString()"
card-class="heightmap-current-mesh-panel"
:icon="mdiInformation"
:collapsible="true"
Expand Down Expand Up @@ -236,7 +236,7 @@
</v-card-text>
</panel>
<panel
:title="$t('Heightmap.Profiles')"
:title="$t('Heightmap.Profiles').toString()"
card-class="heightmap-profiles-panel"
:icon="mdiStackOverflow"
:collapsible="true"
Expand Down Expand Up @@ -319,7 +319,7 @@
</v-row>
<v-dialog v-model="renameDialog" persistent :max-width="400" @keydown.esc="renameDialog = false">
<panel
:title="$t('Heightmap.RenameBedMeshProfile')"
:title="$t('Heightmap.RenameBedMeshProfile').toString()"
:icon="mdiGrid"
card-class="heightmap-rename-dialog"
:margin-bottom="false">
Expand Down Expand Up @@ -349,7 +349,7 @@
:max-width="400"
@keydown.esc="calibrateDialog.boolShow = false">
<panel
:title="$t('Heightmap.BedMeshCalibrate')"
:title="$t('Heightmap.BedMeshCalibrate').toString()"
:icon="mdiGrid"
card-class="heightmap-calibrate-dialog"
:margin-bottom="false">
Expand All @@ -375,7 +375,7 @@
</v-dialog>
<v-dialog v-model="removeDialog" persistent :max-width="400" @keydown.esc="removeDialog = false">
<panel
:title="$t('Heightmap.BedMeshRemove')"
:title="$t('Heightmap.BedMeshRemove').toString()"
:icon="mdiGrid"
card-class="heightmap-remove-dialog"
:margin-bottom="false">
Expand All @@ -396,7 +396,7 @@
</v-dialog>
<v-dialog v-model="saveConfigDialog" persistent :max-width="400" @keydown.esc="saveConfigDialog = false">
<panel
:title="$t('Heightmap.SAVE_CONFIG')"
:title="$t('Heightmap.SAVE_CONFIG').toString()"
:icon="mdiGrid"
card-class="heightmap-remove-save-dialog"
:margin-bottom="false">
Expand Down

0 comments on commit e0fd25c

Please sign in to comment.