You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
454 B
21 lines
454 B
Popup:
|
|
title: _('Plugins')
|
|
id: popup
|
|
BoxLayout:
|
|
orientation: 'vertical'
|
|
|
|
GridLayout:
|
|
size_hint: 1, None
|
|
cols: 2
|
|
id: plugins_list
|
|
on_parent:
|
|
app.show_plugins(plugins_list)
|
|
Button:
|
|
size_hint: 1, None
|
|
height: '48dp'
|
|
text: _('Close')
|
|
on_release: popup.dismiss()
|
|
|
|
Widget:
|
|
size_hint: 1, 0.8
|
|
|
|
|