aboutsummaryrefslogtreecommitdiffstats
path: root/tagit/dialogues/console.kv
blob: b68227d71ab05346107158f7f6bbab42deed4be8 (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
28
29
30

<Console>:
    text: ''
    title: 'tagit log console'
    ok_on_enter: False
    init_at_bottom: True

    DialogueContentTitle:
        title: root.title
        size_hint_y: 0.6

		ScrollView: 
            scroll_y: 0 if root.init_at_bottom else 1

	        Label:
	            text: root.text
                size_hint_y: None
                height: self.texture_size[1]
                text_size: self.width, None
                bold: True
                font_name: resource_find('DejaVuSansMono.ttf') # monospace font
	            markup: True
	            multiline: True
	            halign: 'left'

        DialogueButtons_One:
            ok_text: "close"
            # FIXME: Inform that this action will not terminate the underlying process

## EOF ##