Results 7 comments of Goran M.

Found the issue, installation doesn't copy src/bind.c and nuklear.h to the .nimble\pkgs\nuklear-0.1.0 folder. Once I've copied manually missing files, compiles without issue but the window is empty. I guess this...

Another solution is to just turn off the esModule with style-loader option like this: `{ loader: 'style-loader', options: { esModule: false, } },` btw. MiniCssExtractPlugin has also that option in...

> Sounds like this may fix that? #2511 That will only allow us to apply width by using headerStyle / cellStyle together. Width is still overwritten with the CommonValues.reducePercentsInCalc function...

Most typical example would be MUI `````` - which fails due to the missing ref.

You can prevent this, but you need to use shouldComponentUpdate to prevent re-rendering when content isn't changed. Most basic / stupid approach would be : ``` shouldComponentUpdate(nextProps, nextState) { if...

I think this is a vscode bug, extension itself has support for multiple placeholders but the vscode.window.showInputBox command doesn't play nice when in Promise chain (only the first input is...

For some reason when I was playing with it that didn't work as expected. If you would have multiple variables, they would be chained with promises, and that didn't work.....