JonnyNOS

Results 13 comments of JonnyNOS

I found something in the Joystick.h file all the way at the bottom. Mayby its something which could be fixed with the Limitation. I mean right around this line: //it...

I found out it works fine. But in Assetto Corsa when the car starts to understeer, the forces(0) value goes down. I took the check from "enhance understeer effect" and...

Thanks, this fix works, but i recommend to put `**if self.method_command: self.method_command(k)**` after `if self.command: self.command(k)` so you get the now selected value and not the value selected before that...

the Problem is in the ctk_segmented_button.py the width is getting set to 0. i dont know a fix for that now but i'd like it to work, too. ``` def...

found a Solution: in the def _set_dimensions: ``` def _set_dimensions(self, width: int = None, height: int = None): super()._set_dimensions(width, height) for button in self._buttons_dict.values(): button.configure(height=height, width=width) # width=width was missing...

this probably is because you highlight the cells with bg=blank and fg=black. highlighted cells will be shown over highlighted rows/columns. so the cells will be shown as bg=blank and fg=black...

some time ago i made a popup right click window for notes, but it used a sqlite Database to store and recieve data, maybe if i find the files again...

It works very good, but is there any way to indicate if a cell has a note/tooltip? Because right now you can't tell if a cell has a note or...

Oh i must've overread it. That works, thank you! the only thing i have noticed is when using `readonly=False`, when i hover over a text and it opens, but i...

Thanks, that fixed it, But still when i hover over the red marked area here for example: ![Image](https://github.com/user-attachments/assets/3889a681-43d1-46e0-9650-329507021e33) it is only possible to open the note of that cell if...