-
-
Notifications
You must be signed in to change notification settings - Fork 624
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
Border_width ignored on top and bottom borders #1951
Comments
Same Here Version v1.21.2 Which OS/distro are you seeing the problem on? ArchLinux Conky config
Stack trace No response Relevant log output No response |
Can you try running latest |
As of commit 12da795, the issue remains. |
Assigning self as I probably broke it in #1862 with changes to |
I'm seeing the same thing here. Conky v1.21.2, Arch Linux up to date as of 14 June 2024, kernel v6.9.4. Also, and I just noticed this, the very last readout in my configuration file is cut off.
|
The same problem Conky v1.21.2
|
Just compiled & as of commit 61208fc the issue remains. |
Just compiled commit 61208fc. Same thing. |
@Caellian I'm on v |
I've been doing some testing side by side with the latest conky source, and 1.19.7 (which I can confirm doesn't have this bug). Looking at all the values in this function:
They are all identical apart from Running both versions at the same time, I noticed that the latest version seems to be missing 5 pixels from the top, and 5 from the bottom. Manually changing Update:
The vec
It can be fixed like this: I'm not sure if it's a bug with There are two places I could find this issue, the other was in
Which can be fixed in a similar way:
Making these 2 changes seems to fix both the 10 missing pixels, and the borders return to the top and bottom. |
Yup, that's the bug. Thank you for debugging this, you've simplified the process on my side 99%. static inline vec<T, Length> uniform(T x) {
return vec<T, Length>(std::array<T, Length>{x});
} I incorrectly assumed array constructor to work like |
Everyone do you mind testing the latest
EDIT: updated branch after merging |
Merged the PR into I'm re-opening this issue until someone reports it's ok to close. |
Commit ac25fcc on top of conky-1.21.4 fixes the issue for me. Thanks. |
I can also confirm that the issue is resolved. Thanks to all involved. :) |
What happened?
Upgraded from v1.19.7 to 1.21.1 on Manjaro and the top and bottom borders are no longer rendered as expected. You can see the differences between the two below, with v1.19.7 on the left:
I have noticed that 1.21.2 was released earlier today and the appimage for that exhibits the same issue.
I also see much talk about dpi & Wayland recently; I'm at 96 dpi on X11 should it matter.
Version
v1.21.1
Which OS/distro are you seeing the problem on?
Linux (other)
Conky config
Stack trace
No response
Relevant log output
No response
The text was updated successfully, but these errors were encountered: