Results 5 comments of Maxim

Same for me, Windows 10: 1. Start the app, click the icon in tray to open window 2. Drag and drop files, click 'Merge' Result: It starts converting and never...

Good question! This should be 64-bit library.

It is strange that I dont encounter this problem. There is a problem with lightning (caused by bug in unity editor) but not with materials themself. Have you tried to...

The code doesn't work with touch screens since hover never happens. As a result, scroll jumps back to original position every time I touch the window.

My workaround: ``` ImGuiContext& g = *ImGui::GetCurrentContext(); ImGuiWindow* window = g.CurrentWindow; const auto lastHeldStateId = window->GetID("##lastheldstate"); const bool lastHeld = window->DC.StateStorage->GetBool(lastHeldStateId, false); bool hovered = false; bool held = false;...