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 64 65 66 67 68 69 70 71 72 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x | import { setAmountOfEdgePreviews } from "../../store/appSettings/amountOfEdgePreviews/amountOfEdgePreviews.actions" import { setAmountOfTopLabels } from "../../store/appSettings/amountOfTopLabels/amountOfTopLabels.actions" import { setColorLabels } from "../../store/appSettings/colorLabels/colorLabels.actions" import { setEdgeHeight } from "../../store/appSettings/edgeHeight/edgeHeight.actions" import { setHideFlatBuildings } from "../../store/appSettings/hideFlatBuildings/hideFlatBuildings.actions" import { setInvertArea } from "../../store/appSettings/invertArea/invertArea.actions" import { setInvertHeight } from "../../store/appSettings/invertHeight/invertHeight.actions" import { setIsWhiteBackground } from "../../store/appSettings/isWhiteBackground/isWhiteBackground.actions" import { setLayoutAlgorithm } from "../../store/appSettings/layoutAlgorithm/layoutAlgorithm.actions" import { setMapColors, invertColorRange, invertDeltaColors } from "../../store/appSettings/mapColors/mapColors.actions" import { setMaxTreeMapFiles } from "../../store/appSettings/maxTreeMapFiles/maxTreeMapFiles.actions" import { setScaling } from "../../store/appSettings/scaling/scaling.actions" import { setSharpnessMode } from "../../store/appSettings/sharpnessMode/sharpnessMode.actions" import { setShowMetricLabelNameValue } from "../../store/appSettings/showMetricLabelNameValue/showMetricLabelNameValue.actions" import { setShowMetricLabelNodeName } from "../../store/appSettings/showMetricLabelNodeName/showMetricLabelNodeName.actions" import { setShowOnlyBuildingsWithEdges } from "../../store/appSettings/showOnlyBuildingsWithEdges/showOnlyBuildingsWithEdges.actions" import { setAreaMetric } from "../../store/dynamicSettings/areaMetric/areaMetric.actions" import { setColorMetric } from "../../store/dynamicSettings/colorMetric/colorMetric.actions" import { setColorMode } from "../../store/dynamicSettings/colorMode/colorMode.actions" import { setColorRange } from "../../store/dynamicSettings/colorRange/colorRange.actions" import { setEdgeMetric } from "../../store/dynamicSettings/edgeMetric/edgeMetric.actions" import { setAllFocusedNodes, focusNode, unfocusAllNodes, unfocusNode } from "../../store/dynamicSettings/focusedNodePath/focusedNodePath.actions" import { setHeightMetric } from "../../store/dynamicSettings/heightMetric/heightMetric.actions" import { setMargin } from "../../store/dynamicSettings/margin/margin.actions" import { setSearchPattern } from "../../store/dynamicSettings/searchPattern/searchPattern.actions" import { setMarkedPackages, markPackages, unmarkPackage } from "../../store/fileSettings/markedPackages/markedPackages.actions" import { setEnableFloorLabels } from "../../store/appSettings/enableFloorLabels/enableFloorLabels.actions" import { setState } from "../../store/state.actions" export const actionsRequiringRerender = [ setColorLabels, setMapColors, invertColorRange, invertDeltaColors, setShowMetricLabelNodeName, setShowMetricLabelNameValue, setIsWhiteBackground, setInvertArea, setInvertHeight, setHideFlatBuildings, setScaling, setEdgeHeight, setAmountOfEdgePreviews, setAmountOfTopLabels, setLayoutAlgorithm, setMaxTreeMapFiles, setSharpnessMode, setColorMode, setEdgeMetric, setColorRange, setMargin, setSearchPattern, setAllFocusedNodes, focusNode, unfocusAllNodes, unfocusNode, setHeightMetric, setAreaMetric, setColorMetric, setShowOnlyBuildingsWithEdges, setMarkedPackages, markPackages, unmarkPackage, setEnableFloorLabels, setState ] |