(rawPadSettings: any)
| 260 | } |
| 261 | |
| 262 | setPadSettings(rawPadSettings: any) { |
| 263 | const nextPadSettings = { |
| 264 | ...this.getPadSettings(), |
| 265 | ...rawPadSettings, |
| 266 | view: { |
| 267 | ...this.getPadSettings().view, |
| 268 | ...(rawPadSettings?.view ?? {}), |
| 269 | }, |
| 270 | }; |
| 271 | this.padSettings = Pad.normalizePadSettings(nextPadSettings); |
| 272 | } |
| 273 | |
| 274 | /** |
| 275 | * Appends a new revision |
no test coverage detected