1 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
2 | // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial |
3 | |
4 | // Test for manual visual verification of default font properties of Window |
5 | // |
6 | |
7 | TestCase := Window { |
8 | width: 800px; |
9 | height: 600px; |
10 | |
11 | default-font-family: "Courier New" ; |
12 | default-font-size: 48px; |
13 | |
14 | GridLayout { |
15 | Text { |
16 | text: "This text should be shown in 48px Courier New\nIt's a fixed width font so the characters should align" ; |
17 | } |
18 | } |
19 | } |
20 | |