Skip to content

Commit

Permalink
Merge pull request #89716 from theromis/master
Browse files Browse the repository at this point in the history
[X11] Add more details to large icon size warning
  • Loading branch information
akien-mga committed Mar 28, 2024
2 parents 1260ee6 + ece8685 commit d28fb26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/linuxbsd/x11/display_server_x11.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5210,7 +5210,7 @@ void DisplayServerX11::set_icon(const Ref<Image> &p_icon) {
if (g_set_icon_error) {
g_set_icon_error = false;

WARN_PRINT("Icon too large, attempting to resize icon.");
WARN_PRINT(vformat("Icon too large (%dx%d), attempting to downscale icon.", w, h));

int new_width, new_height;
if (w > h) {
Expand Down

0 comments on commit d28fb26

Please sign in to comment.