fix: "re-add copyable places" setting toggle
This commit is contained in:
parent
0eca6b62c7
commit
ffcb35d15f
3 changed files with 4 additions and 3 deletions
|
|
@ -96,6 +96,7 @@ const DefaultSettings = {
|
|||
PercentageOn: true,
|
||||
OpacityOn: true
|
||||
},
|
||||
ReaddCopyablePlacesOn: true,
|
||||
TimePlayedOn: true
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -135,7 +135,7 @@ const Gamepasses = Array.from(GamepassesTab.getElementsByClassName('card')) || [
|
|||
}
|
||||
}
|
||||
|
||||
if (Settings.ReaddCopyableOn === true) {
|
||||
if (Settings.ReaddCopyablePlacesOn === true) {
|
||||
ReaddCopyable()
|
||||
}
|
||||
});
|
||||
|
|
|
|||
|
|
@ -759,7 +759,7 @@
|
|||
* This feature will be expanded to allow you to pick from a list of value lists (list-inception), if any prominent value lists pop-up in the future!
|
||||
</span>
|
||||
</div>
|
||||
<div class="setting-container" id="collectibles-inventory-category">
|
||||
<div class="setting-container" id="readd-copyable-places">
|
||||
<span class="badge bg-primary mb-1">New in v1.3!</span>
|
||||
<br>
|
||||
<span class="indicator"> </span>
|
||||
|
|
@ -767,7 +767,7 @@
|
|||
Re-add Copyable Places
|
||||
</span>
|
||||
<div class="setting-buttons">
|
||||
<button class="btn btn-sm toggle-btn" data-setting="CollectibleInventoryCatOn">Toggle</button>
|
||||
<button class="btn btn-sm toggle-btn" data-setting="ReaddCopyablePlacesOn">Toggle</button>
|
||||
</div>
|
||||
<br />
|
||||
<span class="desc">
|
||||
|
|
|
|||
Reference in a new issue