Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { setAmountOfEdgePreviews } from "./amountOfEdgePreviews/amountOfEdgePreviews.actions"
import { setAmountOfTopLabels } from "./amountOfTopLabels/amountOfTopLabels.actions"
import { setColorLabels } from "./colorLabels/colorLabels.actions"
import { setEdgeHeight } from "./edgeHeight/edgeHeight.actions"
import { setScreenshotToClipboardEnabled } from "./enableClipboard/screenshotToClipboardEnabled.actions"
import { setExperimentalFeaturesEnabled } from "./enableExperimentalFeatures/experimentalFeaturesEnabled.actions"
import { setEnableFloorLabels } from "./enableFloorLabels/enableFloorLabels.actions"
import { setHideFlatBuildings } from "./hideFlatBuildings/hideFlatBuildings.actions"
import { setInvertArea } from "./invertArea/invertArea.actions"
import { setInvertHeight } from "./invertHeight/invertHeight.actions"
import { setIsEdgeMetricVisible, toggleEdgeMetricVisible } from "./isEdgeMetricVisible/isEdgeMetricVisible.actions"
import {
setIsColorMetricLinkedToHeightMetricAction,
toggleIsColorMetricLinkedToHeightMetric
} from "./isHeightAndColorMetricLinked/isColorMetricLinkedToHeightMetric.actions"
import { setPresentationMode } from "./isPresentationMode/isPresentationMode.actions"
import { setIsSearchPanelPinned, toggleIsSearchPanelPinned } from "./isSearchPanelPinned/isSearchPanelPinned.actions"
import { setIsWhiteBackground } from "./isWhiteBackground/isWhiteBackground.actions"
import { setLayoutAlgorithm } from "./layoutAlgorithm/layoutAlgorithm.actions"
import { setMapColors, invertColorRange, invertDeltaColors } from "./mapColors/mapColors.actions"
import { setMaxTreeMapFiles } from "./maxTreeMapFiles/maxTreeMapFiles.actions"
import { setResetCameraIfNewFileIsLoaded } from "./resetCameraIfNewFileIsLoaded/resetCameraIfNewFileIsLoaded.actions"
import { setScaling } from "./scaling/scaling.actions"
import { setSharpnessMode } from "./sharpnessMode/sharpnessMode.actions"
import { setShowMetricLabelNameValue } from "./showMetricLabelNameValue/showMetricLabelNameValue.actions"
import { setShowMetricLabelNodeName } from "./showMetricLabelNodeName/showMetricLabelNodeName.actions"
import { setShowOnlyBuildingsWithEdges } from "./showOnlyBuildingsWithEdges/showOnlyBuildingsWithEdges.actions"
import { setSortingOrderAscending, toggleSortingOrderAscending } from "./sortingOrderAscending/sortingOrderAscending.actions"
export const appSettingsActions = [
setColorLabels,
setShowMetricLabelNodeName,
setShowMetricLabelNameValue,
setSortingOrderAscending,
toggleSortingOrderAscending,
setIsSearchPanelPinned,
toggleIsSearchPanelPinned,
setMapColors,
invertColorRange,
invertDeltaColors,
setResetCameraIfNewFileIsLoaded,
setShowOnlyBuildingsWithEdges,
setIsEdgeMetricVisible,
toggleEdgeMetricVisible,
setIsWhiteBackground,
setInvertHeight,
setInvertArea,
setHideFlatBuildings,
setScaling,
setEdgeHeight,
setAmountOfEdgePreviews,
setAmountOfTopLabels,
setPresentationMode,
setExperimentalFeaturesEnabled,
setScreenshotToClipboardEnabled,
setLayoutAlgorithm,
setMaxTreeMapFiles,
setSharpnessMode,
setIsColorMetricLinkedToHeightMetricAction,
toggleIsColorMetricLinkedToHeightMetric,
setEnableFloorLabels
]
|