// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: MIT import { MaterialPalette } from "../styling/material_palette.slint"; export global MaterialWindowAdapter { in property disable_hover; } export component MaterialWindow inherits Window { in property disable_hover; background: MaterialPalette.background; changed disable_hover => { MaterialWindowAdapter.disable_hover = root.disable_hover; } }