blob: 9135c557760471d124bf8dc709a6cda7b6361f7e (
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
27
|
#:import resource_find kivy.resources.resource_find
<CreateGroup>:
source: resource_find('atlas://grouping/create')
tooltip: 'Group items'
<DissolveGroup>:
source: resource_find('atlas://grouping/ungroup')
tooltip: 'Ungroup items'
<AddToGroup>:
source: resource_find('atlas://grouping/add')
tooltip: 'Add items to group'
<OpenGroup>:
source: resource_find('atlas://grouping/group')
tooltip: 'Open Group'
<RepresentGroup>:
source: resource_find('atlas://grouping/represent')
tooltip: 'Make group representative'
<RemoveFromGroup>:
source: resource_find('atlas://grouping/remove')
tooltip: 'Remove from group'
## EOF ##
|