chore: automated housekeeping...

This commit is contained in:
Pieter Vander Vennet 2025-01-28 15:42:34 +01:00
parent 6bc8760adf
commit 0ad881316b
359 changed files with 2049 additions and 938 deletions

View file

@ -34,7 +34,6 @@ export class WithGuiState extends WithSpecialLayers {
this.initHotkeysGui()
}
private initHotkeysGui() {
const docs = Translations.t.hotkeyDocumentation
@ -44,7 +43,7 @@ export class WithGuiState extends WithSpecialLayers {
Hotkeys.RegisterHotkey(
{
nomod: "b"
nomod: "b",
},
docs.openLayersPanel,
() => {
@ -55,7 +54,7 @@ export class WithGuiState extends WithSpecialLayers {
)
Hotkeys.RegisterHotkey(
{
nomod: "s"
nomod: "s",
},
Translations.t.hotkeyDocumentation.openFilterPanel,
() => {
@ -70,5 +69,4 @@ export class WithGuiState extends WithSpecialLayers {
this.guistate.closeAll()
this.selectedElement.setData(this.currentView.features?.data?.[0])
}
}