blob: 3a4c3a4b8c1b052bcc817af8aa67a89399212d1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* e/widgets/fontpreview is used in the Font Config dialog */
group {
name: "e/widgets/fontpreview";
parts {
part {
name: "e.fontpreview.text";
type: TEXT;
mouse_events: 0;
scale: 1;
description {
state: "default" 0.0;
color_class: "entry_text";
rel1.offset: 6 6;
rel2.offset: -7 -7;
text {
text: "The quick brown fox jumped over YA MUM!";
font: "Sans";
size: 10;
min: 1 1;
align: 0.5 0.5;
text_class: "_e_font_preview";
}
}
}
}
}
|