This means very little. FLTK is stable and does not need a lot work, so there is no particular reason to fork it.
However, ImGui has 59400 satisfied users, while FLTK has only 1600 satisfied users.

And ImGui also stable, it's just more friendly to make some customization in the code...

One huge disadvantage of ImGUI is power and resource consumption. You will be drawing all the stuff 30/60/unlimited frames per second whether stuff changes or not. Open any ImGUI based application ans see how much CPU it consumes.
Just tested it on Raspberry Pi. Even with the Demo window, which includes almost all widgets with thousands of controls in one window, it consumes about 5-8% of the CPU and works very smoothly. I would like to see how much CPU FLTK would consume with a thousand different controls in one window.

The executable is about 1.4 MB and requires just SDL2 or GLFW library.
Just for comparison with Qt, which needs to install gigabytes of different libraries...

As I said before, ImGui works very fast and well with pretty heavy UI on Raspberry Pi Zero 2w in DRM/KMS mode through SDL2 backend with total system memory consumption about 200 MB of 512MB available... where about 155 MB is allocated by Linux OS.
You have to render the whole UI every frame. It is objectively less optimal than an application that only renders on events.
Yes, that's true. It doesn't consume much (max 5-10% on Raspberry Pi), and this is not an issue for an active app. You can eliminate this CPU load for minimized window. But for a background window which is visible, it may be a drawback.
However, even for a background window, you can use tricks like reduce refresh rate frequency, which will lower CPU consumption, making it almost the same as for event-driven UI. Since background window don't needs smooth animation, you can reduce its refresh rate with no issue.
But you're right, for a tool which don't needs smooth graphics UI and it's background work should not affect CPU load much it may be drawback. And this is why I still looking for some WinForms replacement for Linux.