mirror of
https://github.com/janishutz/midi-micro-bit_sound-converter.git
synced 2025-11-25 13:54:26 +00:00
Finished Version 1.0. Guide for installation will be available soon
This commit is contained in:
22
gui/filechooser.kv
Normal file
22
gui/filechooser.kv
Normal file
@@ -0,0 +1,22 @@
|
||||
FileChooserScreen:
|
||||
name: "ChooseFile"
|
||||
md_bg_color: (0, 0, 0, 1)
|
||||
BoxLayout:
|
||||
size: root.size
|
||||
pos: root.pos
|
||||
orientation: "vertical"
|
||||
FileChooserListView:
|
||||
id: filechooser
|
||||
|
||||
BoxLayout:
|
||||
size_hint_y: None
|
||||
height: 30
|
||||
Button:
|
||||
text: "Cancel"
|
||||
on_release:
|
||||
app.root.current = "Home"
|
||||
root.manager.transition.direction = "right"
|
||||
|
||||
Button:
|
||||
text: "Load"
|
||||
on_release: root.load(filechooser.path, filechooser.selection)
|
||||
Reference in New Issue
Block a user