mirror of
https://github.com/markqvist/Sideband.git
synced 2025-11-27 19:00:49 -05:00
21 lines
589 B
Text
21 lines
589 B
Text
<ErrorMessage>:
|
|
BoxLayout:
|
|
orientation: 'vertical'
|
|
padding: 10
|
|
spacing: 20
|
|
Label:
|
|
size_hint_y: None
|
|
font_size: '18sp'
|
|
height: '24sp'
|
|
text: 'Application has crashed, details: '
|
|
ScrollView:
|
|
size_hint: 1, 1
|
|
TextInput:
|
|
text: root.message
|
|
size_hint: 1, None
|
|
height: self.minimum_height
|
|
Button:
|
|
size_hint_y: None
|
|
height: '40sp'
|
|
text: 'OK, terminate'
|
|
on_press: root.dismiss()
|