mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-30 13:51:13 +00:00
22 lines
431 B
Text
22 lines
431 B
Text
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
|
|
X := PopupWindow {
|
|
// ^error{PopupWindow cannot be the top level}
|
|
|
|
Rectangle {
|
|
|
|
popup := PopupWindow {
|
|
// ^error{Cannot access the inside of a PopupWindow from enclosing component}
|
|
r := Rectangle {
|
|
}
|
|
}
|
|
|
|
background: r.background;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|