Andrzej Kilijański

Results 40 comments of Andrzej Kilijański

Did you installed dmd (D compiler) first? You can download it from here: https://dlang.org/download.html

DlangIDE uses https://github.com/dlang-community/DCD for code completion. I think CoEdit use it too. On linux when I type . (dot) after object name pop up menu appears. Ctrl+Space works form me,...

Yes there are some hdpi issues you can read more about it here: https://github.com/buggins/dlangui/issues/529. > I would like to try to help with the dlangide/dlangui development if I can. I'm...

I had similar conclusions when working on `windowRect` on SDL. `Rect` has `right`, `bottom` fields and `height`/`width` properties so using `right`, `bottom` for size is a little confusing. I made...

> Right/bottom bounds of Rects, at least in DlangUI, are non-inclusive. So, (0, 0, 2, 2) is 2x2 rect. It would be good to add this information to `Rect` documentation...

Now window management is working on SDL, windows and X11 (high priority so is repaired but not redesigned yet). The last thing is fix focus (currently if you open two...

Focus is implemented and released in v0.9.89. Clean up platform code is the next step.

Does setting DPI with `overrideScreenDPI` improve the situation?

Maybe it's a graphics problem. I noticed that the default template has no hdpi scrollbar graphics. The icons are probably the same.

@andresclari In v0.9.174 version scrollbars should be displayed correctly. >he platform code should be detecting the actual screen DPI from the system, and follow the proper scaling setup for the...