1 | #![allow (deprecated)]slint::slint!{#[include_path=r#"/input/slint/tests/driver/driverlib/../../cases/crashes"# ] |
2 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
3 | // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial |
4 | |
5 | import { TabWidget } from "std-widgets.slint" ; |
6 | |
7 | export ComboBox := Rectangle { |
8 | min-height: max(32px, l.min-height); |
9 | l := HorizontalLayout { Text {} } |
10 | } |
11 | |
12 | export Broken := TabWidget { |
13 | t1 := Tab { |
14 | vl := VerticalLayout { |
15 | cb := ComboBox { } |
16 | } |
17 | } |
18 | } |
19 | export AppWindow := Window { |
20 | hl := HorizontalLayout { |
21 | broken := Broken {} |
22 | } |
23 | } |
24 | } |
25 | |