mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-12-02 10:02:12 +00:00
Compare commits
2 Commits
2e3b22c5fa
...
a0157ddc2a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a0157ddc2a | ||
|
|
8f595fbc7b |
@@ -29,11 +29,11 @@ Soubory můžete také přetáhnout přímo ze souborového systému do okna.
|
|||||||
|
|
||||||
Vytvořit kopii aktuálně vybraných souborů.
|
Vytvořit kopii aktuálně vybraných souborů.
|
||||||
|
|
||||||
### <FileX size="16" class="inline-block" style="margin-bottom: 2px" /> Delete
|
### <FileX size="16" class="inline-block" style="margin-bottom: 2px" /> Smazat
|
||||||
|
|
||||||
Smazat aktuálně vybrané soubory.
|
Smazat aktuálně vybrané soubory.
|
||||||
|
|
||||||
### <FileX size="16" class="inline-block" style="margin-bottom: 2px" /> Delete all
|
### <FileX size="16" class="inline-block" style="margin-bottom: 2px" /> Smazat vše
|
||||||
|
|
||||||
Smazat všechny soubory.
|
Smazat všechny soubory.
|
||||||
|
|
||||||
|
|||||||
@@ -30,8 +30,8 @@ export class MapCursor {
|
|||||||
constructor() {
|
constructor() {
|
||||||
this._states = writable(new Set());
|
this._states = writable(new Set());
|
||||||
this._states.subscribe((states) => {
|
this._states.subscribe((states) => {
|
||||||
let state = states.entries().reduce((max, entry) => {
|
let state = Array.from(states.values()).reduce((max, value) => {
|
||||||
return entry[0] > max ? entry[0] : max;
|
return value > max ? value : max;
|
||||||
}, MapCursorState.DEFAULT);
|
}, MapCursorState.DEFAULT);
|
||||||
let canvas = get(map)?.getCanvas();
|
let canvas = get(map)?.getCanvas();
|
||||||
if (canvas) {
|
if (canvas) {
|
||||||
|
|||||||
Reference in New Issue
Block a user