-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clipper vs Table flickering #8488
Comments
Thank you for your report and careful repro code. Feedback loops of this kind are not specific to tables. Scrolling on both axises tends to amplify them. The easiest way to get rid of this is to make scrollbar visibility not alter layout. This may be achieved in two ways:
Note that a commit from February 7 (soon after the 1.91.8 release) made it easier to inject window flags into a table, by doing: ImGuiContext& g = *GImGui; // or *ImGui::GetCurrentContext();
g.NextWindowData.HasFlags |= ImGuiNextWindowDataFlags_HasWindowFlags;
g.NextWindowData.WindowFlags = ImGuiWindowFlags_AlwaysVerticalScrollbar | ImGuiWindowFlags_AlwaysHorizontalScrollbar;
ImGui::BeginTable(...); |
Thank you and apologize for the duplicate topic |
Don’t worry. Now that I think about it, I think it may be viable to consider an automatic solution to this problem that involve detecting changes of horizontal scrollbar visibility, and heuristically enabling it at some point. I will investigate this. |
Here's a tentative patch: I'm finding it a little hard to reason about side-effects, but basically this might lock ScrollbarX visibility for longer than necessary, but since the other alternative to avoid this is using @wolfpld as per #3285, I realize you have other another solution but I would be curious to know if you think this automatic workaround is viable. One caveat is that the "magic" stabilization may not facilitate leading people to understanding what is happening and leading them to alternative solution, but this may be a good compromise. |
Slight alteration which makes it possible to display a log entry when enabled. |
The best I can find for this is wolfpld/tracy@ecfeb01. IIRC the issue was that some lines were longer than others. With clipper enabled causing a limited range of lines shown the result was that the horizontal scroll bar appeared in some cases, but not other. The degenerate ping-pong case was when the scroll bar appearing caused a long line to be out of view, which changed the visible width, which hide the scroll bar, which then again caused the long line to appear. I don't know if the above is correlated to this issue, tl;dr, sorry. |
The patch is an attempt to automatically cancel out the ping-pong / feedback loop by detecting it. I'd be interested if you can confirm if commenting out your To clarify, it's always better to (1) set content width as you did, or (2) enforce scrollbar to be visible at all time, aka use So the question for me would be to gauge if this magic stabilization causes more benefits than harm (the potential "harm" would be to relegate this type of issue as a short/small/mysterious problem and let some users not think about it, not incentivizing the user to find and implement the better solution). |
Thank you for your time on this topic. Here below screenshot of patch #8488 (comment) with log enabled. anyhow.. the Omar's "elegance" footprint of the 2 key lines are as usually astonishing: window->ScrollbarXStabilizeToggledHistory = (window->ScrollbarXStabilizeToggledHistory << 1) | ((scrollbar_x_prev != window->ScrollbarX) ? 0x01 : 0x00);
const bool scrollbar_x_stabilize = (window->ScrollbarXStabilizeToggledHistory != 0) && ImCountSetBits(window->ScrollbarXStabilizeToggledHistory) >= 4; // 4 == half of bits in our U8 history. |
Not sure what to make of this last comment 😅 Thanks for your feedback! |
Thank you. The last comment was a compliment! |
One thought I have is that this may not work well for programs which pause rendering if there's no reason to refresh the screen. |
Very good point. Thought at that point if its paused in either state the flickering is not seen anyhow. It doesn’t seem like a hurtful change. |
Version/Branch of Dear ImGui:
Version v1.91.8, released
Back-ends:
imgui_impl_glfw.cpp + imgui_impl_opengl2.cpp
Compiler, OS:
Windows 11 + MSVC 2022, Linux Debian + GCC
Full config/build information:
Minimal, Complete and Verifiable Example code:
This example will reproduce the issue of table "flickering" when using clipper.
Here below the clipper continuously recalculate amount of visible rows due to scrollbar that change the amount of available region.
Screenshots/Video:
Flickering effect is filtered by screen-capture, it's with much higher frequency in reality.
The text was updated successfully, but these errors were encountered: