mirror of
https://github.com/ilya-zlobintsev/LACT.git
synced 2025-02-25 18:55:26 -06:00
24 lines
399 B
Plaintext
24 lines
399 B
Plaintext
using Gtk 4.0;
|
|
|
|
template $VulkanFeatureRow: Box {
|
|
focus-on-click: false;
|
|
hexpand: true;
|
|
hexpand-set: true;
|
|
margin-bottom: 10;
|
|
margin-end: 20;
|
|
margin-start: 20;
|
|
margin-top: 10;
|
|
|
|
Label name_label {
|
|
halign: start;
|
|
hexpand: true;
|
|
label: 'feature name';
|
|
selectable: true;
|
|
}
|
|
|
|
Image available_image {
|
|
halign: end;
|
|
icon-name: 'action-unavailable-symbolic';
|
|
}
|
|
}
|