Vibhakar Solanki

Results 29 comments of Vibhakar Solanki

The reason it says that is because of how "config" is stored https://github.com/kivy/kivy/blob/master/kivy/config.py#L909 https://github.com/kivy/kivy/blob/master/kivy/config.py#L859

@sanderland , I am unable to reproduce the error ```py Button(text="`Test`") ``` ![image](https://user-images.githubusercontent.com/22869882/157664024-ae331199-54d5-4e95-9a19-8dd5f86b0592.png) ```py Button(text="`Test`", font_name="CascadiaMonoPL-Regular.ttf") ``` ![image](https://user-images.githubusercontent.com/22869882/157664280-f8d63595-5578-4361-83f7-ea2b697b4122.png) ```py Button(text="`Test`", font_name="NotoSans-Regular.ttf") ``` ![image](https://user-images.githubusercontent.com/22869882/157664148-55bcfca9-e552-4bb9-acbd-7382881f489d.png) ```py Button(text="`Test` Test", font_name="NotoSans-Regular.ttf") ``` ![image](https://user-images.githubusercontent.com/22869882/157664487-eb085a7e-d909-4398-9257-d6427532c2df.png)

tried both ways, same result (global OS scope, and local program scope)

hmm i do not think this is a bug `with` is used in a context manager, ( ie `root.canvas.before`), so GREEN is actually not available there you can do ```py...

i use this myself ```css [class^="hltr-"] { color: #bdbdbd; } ```

hmm i might try adding antialiasing to SVG , or maybe even the [usvg](https://github.com/RazrFalcon/resvg/tree/master/crates/usvg), but some more discussion needs to take place

First off congrats on the first PR 🥳 🎉 🎉 🎉 secondly @kengoon why have you opted to make our own module instead of using filetype ? im just asking...

i proposed filetype because it is the "[official](https://peps.python.org/pep-0594/#deprecated-modules)" recommended alternative ![image](https://github.com/kivy/kivy/assets/22869882/a347234c-387e-4da7-9eda-c83194960288)

My main reason for adding a dependency is that kivy does not need to worry about testing if our implementation is correct, and the package is recommended and maintained, and...

@kengoon did you run tests and pre-commit on your end ? i think there are some linting issues :thinking: