diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2024-10-06 22:52:44 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2024-10-06 22:52:44 +0900 |
| commit | d7f5a7ac89425286a6d4e4847128f3f6b6424aff (patch) | |
| tree | e55ef98fd61fb45758bec781e98a797e3c65a6eb /st | |
| parent | e078b1fd10e2c1e4854b4d4718e6d34310ff0314 (diff) | |
Init
Diffstat (limited to 'st')
| -rw-r--r-- | st/x.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1056,7 +1056,7 @@ xloadfonts(const char *fontstr, double fontsize) XCloseDisplay(dpy); // Close the display after getting resolution // // If the resolution is under 1024x768, set the fontsize to 12 - if (width < 1024 && height < 768) { + if (width <= 1024 && height <= 768) { fontsize = 12; } |
