Dmitry Matveyev
Dmitry Matveyev
I have spent time with it and failed to port this example. The problem is that they use a [gui_file_dialog.h](https://github.com/raysan5/raygui/blob/master/examples/custom_file_dialog/gui_file_dialog.h) module together with the example. And because of the complexity...
I guess I will have to prioritize the re-write to a single C file. This issue seems to be too ubiquitous. Thank you for this bug report!
Hi, unfortunately I don't know how HCR currently works. Previously it was an implementation people didn't like with little documentation, now at least the documentation page is a lot more...
This looks great! I will try to have my wife try it and then I will probably provide corrections if I see something wrong in the AI-generated translations. And thank...
> but I would like to continue using a little hardcoded struct, mainly because its easier to use match keys using switch It's true that it's easier with `switch`. My...
> Also some keys can have an upper struct Do you mean an "upper letter" as in `isCtrl('A')`? > like `key.isCtrl('e').isAlt('e')` to `key.isCtrl and key.isAlt` The first option looks something...
Do I understand correctly that you would like to take this option as a base `isCtrl('e') and isShift('e')`, and also add to it `isCtrlC` and other most common combinations?
That looks interesting, yes. I will soon try to implement parsing and using my variant for the key, I will also try to implement the most common combinations then, and...
Sure, thanks for your efforts on this project. Good luck with your implementation.
What about Alt key? Shift+Alt is a fairly common combination at least in my workflow.