Andrzej Kilijański
Andrzej Kilijański
Currently dlangui gets dpi always from first display and its stored in types.d file. I think it should be in Window class. That's need to be changed. The log says...
DlangUI implements main function. So change your app (source/app.d) to: ``` // myproject.d import dlangui; mixin APP_ENTRY_POINT; /// entry point for dlangui based application extern (C) int UIAppMain(string[] args) {...
Unfortunately it is not currently available.
Maybe better is just change window height and/or width when `mainWidget` need more area? The same font family name on different platforms can have different visual representation.
Now when window is too small widgets are shrink so I think we know how much more space is needed. [https://github.com/buggins/dlangui/blob/master/src/dlangui/widgets/layouts.d#L177](url) I think there should be three options (flag in...
I made some more investigation and I **probably** know how to implement behavior like in above comment. Do you working on this issue? Please let me know. I can make...
OK, I start working on this issue.
Solution in #379.
There is one issue in current implementation. When widget width depends on height - width can be incorrect. For example `WidgetList` width is too small when scrollbar appears. Thinking how...
I made big refactoring on my [devel](https://github.com/and3md/dlangui) branch. Not ready for merge yet, but maybe someone want to check/test ;) Some controls need more work and there will be API...