Lukas Kurz

Results 64 comments of Lukas Kurz

What about ...? ```c++ scriptContext->GetThreadContext()->InvalidateAllIsInstInlineCaches(); ```

I also need UI support (WYSIWYG) for editing tables in a `RichEditBox`. For now, I'll have to rely on some very bad code (Hope it doesn't break 🙈) ```cs using...

@codendone That would certainly be a lot safer, but I actually want to be able to dynamically insert table rows into existing tables.

I should note I never actually checked whether the assertion was just a left-over from a refactoring or a valid check for the following code. **Edit**: The fast path uses...

@ppenzin It seems like the macro change hasn't been merged yet (See #6970). I gues their checks were failing because of a wrong copyright notice...

@ppenzin Yes. Sadly the tests still timeout. I'm not sure whether I did apply the slow flag correctly...

Maybe we could add some note like this to the current releases ([See formatting](https://github.com/orgs/community/discussions/16925)): > [!NOTE] > This release was provided by Microsoft > [!CAUTION] > This release if out-of-support!

@atulkatti I'm not a core contributor but @rhuanjl has a backup of the latest release. Btw: Thank you for the warning!! 🙂

@cooljeanius I made an _unofficial_ [backup](https://chakra-core.shortdev.de/) myself. > [!CAUTION] > This link is not controlled by the maintainers of this repo! > Please verify the signatures of the binaries and...

```csharp bool visible = true; const uint WM_ICONERASEBKGND = 0x270u; PostMessage(coreWindow.GetHwnd(), WM_ICONERASEBKGND, 0, visible ? 1 : 0); ```