// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
// Issue #3898
export component LspCrash inherits Window {
// > <warning{The binding for the property 'layoutinfo-h' is part of a binding loop (root.layoutinfo-h -> padding-left -> layoutinfo-h -> root.layoutinfo-h).↵This was allowed in previous version of Slint, but is deprecated and may cause panic at runtime}
HorizontalLayout {
// > <warning{The binding for the property 'layoutinfo-h' is part of a binding loop (root.layoutinfo-h -> padding-left -> layoutinfo-h -> root.layoutinfo-h).↵This was allowed in previous version of Slint, but is deprecated and may cause panic at runtime}
padding-left: parent.width * 0.015;
// > <warning{The binding for the property 'padding-left' is part of a binding loop (root.layoutinfo-h -> padding-left -> layoutinfo-h -> root.layoutinfo-h).↵This was allowed in previous version of Slint, but is deprecated and may cause panic at runtime}
Rectangle {}
}
}