pull/33/head v0.3.5
Thomas Bouve 2020-08-18 13:11:55 +02:00
rodzic 463c1fb6db
commit ea428ebfce
2 zmienionych plików z 10 dodań i 0 usunięć

2
MANIFEST.in 100644
Wyświetl plik

@ -0,0 +1,2 @@
# Include the license file
include LICENSE

Wyświetl plik

@ -36,6 +36,9 @@ fc.show_hidden = True
# Show or hide folder icons
fc.use_dir_icons = True
# Switch to folder-only mode
fc.show_only_dirs = True
# Change the title (use '' to hide)
fc.title = '<b>FileChooser title</b>'
@ -55,6 +58,7 @@ fc.refresh()
fc.register_callback(function_name)
fc.show_hidden
fc.use_dir_icons
fc.show_only_dirs
fc.rows
fc.title
fc.default
@ -90,6 +94,10 @@ fc.selected_filename
## Release notes
### 0.3.5
- Option added to only display folders (@andriykorchak)
### 0.3.4
- Option added to display folder icons (@ptooley)