Skip to content

Commit

Permalink
move files related to map-check
Browse files Browse the repository at this point in the history
  • Loading branch information
SnosMe committed Apr 15, 2024
1 parent d323359 commit 85fcc3a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion renderer/src/web/map-check/MapStatButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { computed, useCssModule } from 'vue'
import { AppConfig } from '@/web/Config'
import { PreparedStat } from './prepare-map-stats'
import { ItemCheckWidget } from '../overlay/interfaces'
import { nextDecision, decisionCreate } from '../settings/maps/common.js'
import { nextDecision, decisionCreate } from './common.js'
import ItemModifierText from '../ui/ItemModifierText.vue'
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
:item-height="2 * fontSize"
v-slot="props"
>
<maps-stat-entry
<SettingsMatcherEntry
:style="{ position: 'absolute', top: `${props.top}px` }"
:matcher="props.item"
:selected-stats="selectedStats"
Expand All @@ -32,11 +32,11 @@
<script lang="ts">
import { computed, defineComponent, ref } from 'vue'
import { useI18nNs } from '@/web/i18n'
import { configProp, findWidget } from '../utils'
import { configProp, findWidget } from '../settings/utils'
import type { ItemCheckWidget } from '@/web/overlay/interfaces'
import { STATS_ITERATOR, STAT_BY_MATCH_STR } from '@/assets/data'
import MapsStatEntry from './MapsStatEntry.vue'
import VirtualScroll from '../../ui/VirtualScroll.vue'
import SettingsMatcherEntry from './SettingsMatcherEntry.vue'
import VirtualScroll from '../ui/VirtualScroll.vue'
import { StatMatcher, StatTag, decisionHasColor } from './common.js'
function tagToShowOrder (tag?: StatTag): number {
Expand All @@ -50,7 +50,7 @@ function tagToShowOrder (tag?: StatTag): number {
export default defineComponent({
name: 'map_check.name',
components: {
MapsStatEntry,
SettingsMatcherEntry,
VirtualScroll
},
props: configProp(),
Expand Down
2 changes: 1 addition & 1 deletion renderer/src/web/settings/SettingsWindow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ import SettingsAbout from './about.vue'
import SettingsPricecheck from './price-check.vue'
import SettingsItemcheck from './item-check.vue'
import SettingsDebug from './debug.vue'
import SettingsMaps from './maps/maps.vue'
import SettingsMaps from '../map-check/settings-maps.vue'
import SettingsStashSearch from './stash-search.vue'
import SettingsStopwatch from './stopwatch.vue'
import SettingsItemSearch from './item-search.vue'
Expand Down

0 comments on commit 85fcc3a

Please sign in to comment.