We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0e2ec4 commit 49ca67dCopy full SHA for 49ca67d
src/conky.cc
@@ -862,7 +862,7 @@ void update_text_area() {
862
last_font_height = font_height();
863
for_each_line(text_buffer, text_size_updater);
864
865
- text_size = text_size.max(conky::vec2i(text_size.x() + 1, minimum_height.get(*state)));
+ text_size = text_size.max(conky::vec2i(text_size.x() + 1, dpi_scale(minimum_height.get(*state))));
866
int mw = dpi_scale(maximum_width.get(*state));
867
if (mw > 0) text_size = text_size.min(conky::vec2i(mw, text_size.y()));
868
}
0 commit comments