-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
ImGui Keybindings window. Leaves an image artifact #72065
Comments
I don’t really think that this is a bug. It’s just that your game window is not an even multiple of the tile size, so no tiles are drawn at the very bottom of the window. The correct fix is to draw that last row of tiles, even though they are partially clipped by the game window boundaries. |
Can confirm. When the window size is right, you can see the edges
*Right size:
Note: When you resize the game window, the artifacts disapear |
I haven't been able to reproduce this with latest Cataclysm, @IdleSol can you re-test? |
Did some additional testing. This problem is most serious in the main menu. In the game itself (after loading the world), resizing the window leaves almost no artifacts. Except for that line at the bottom of the screen (see the first post). Which is not critical. I don't know the correct terminology. Oh, and it's also in translation. I would pay attention to the size of the window in which the game draws its elements. For the main menu, it's obviously smaller than for the game itself. And in both cases smaller than the window the system allocates. The artifacts occur in the gap between these two windows. Or some (?) windows with ImGui ignore the window frames set in the game and focus on the frames set in the system. |
This is interesting, so the issue is present when the window is small, very similar to a screen freeze issue we fixed previously with #72501 . Maybe the root cause was not fixed, still a ImGui window size reporting issue perhaps |
dda-windows-tiles-x64-2024-04-05-0445 |
Describe the bug
If you open the keybindings menu window. After closing it, a line remains at the bottom of the screen.
The interface must be enabled.
Use imGui UI: true
Attach save file
N/A
Steps to reproduce
A similar line appears on any invocation of the keybindings menu. For example:
?
or
a
(start creating a new rule )enter
(set rule name)F1
(calling the keybindings menu)Expected behavior
No "new" lines after closing the key binding menu window.
Screenshots
Versions and configuration
cdda-windows-tiles-x64-2024-02-28-2115
Additional context
If
Use imGui UI: false
, there's no problem.I'm assuming the problem is the size of the keybindings menu. It's longer than it should be.
The text was updated successfully, but these errors were encountered: