Michael Altfield
Michael Altfield
I spent some time looking for how a user could specify their own custom font (eg for accessibility needs), but it's non-trivial. There is no built-in "font picker" in kivy....
I found that, on my dev system, I have: 1. 77 font directories containing 2. 6,182 font files ``` user@buskill:~/tmp/fonts$ cat font_test.py #!/usr/bin/env python3 import os font_dirs = ['/usr/share/fonts', '/usr/share/fonts/cMap',...
I opened an upstream feature request with the Kivy team to create a standard "FontPicker" SettingItem * https://github.com/kivy/kivy/issues/8649 This is already standard in other GUI frameworks, such as GTK and...
Last night I spent several hours trying to adapt our custom ComplexOptions class OptionsItem to be compatible with RecycleView (the positional arguments are an issue; I tried switching to kwargs,...
If I don't set a font, then it will default to Roboto, which ships with kivy. If Roboto cannot be found, then it will throw an error. > (ideally not...
Yes. And I'd say the problem goes higher than kivy. It seems that python in-general should have some cross-platform way to fetch the OS default font.
I didn't have very good luck with the FilePicker. Namely the `path` type in the Kivy Settings didn't allow much customization of the FilePicker widget -- such as being able...
I was successfully able to get the `BusKillOptionItems()` created and clickable and saving to the `Config` object last night. I had to switch from using `__init__()` to the kivy `on_()`...
I built the app with Debian 12, and the issue still occurs. Unfortunately I just discovered that this issue occurs even on the `dev` branch, so the RecycleView change was...
I fixed the scroll-click bug by checking the value of the `touch.button` inside the `on_touch_up(self, touch)` function. More info: * https://github.com/BusKill/buskill-app/commit/2d7bb0c3a66145e08a4ee892ca9484ea91abc039 * https://stackoverflow.com/questions/78183125/scrolling-causes-click-on-touch-up-event-on-widgets-in-kivy-recycleview