Browse Source

show max width/height for XPM

circular17 5 years ago
parent
commit
7e51b704e1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lazpaint/image/uimage.pas

+ 1 - 1
lazpaint/image/uimage.pas

@@ -464,7 +464,7 @@ begin
   begin
     if (Width > 256) or (Height > 256) then
     begin
-      ShowMessage(rsNotReasonableFormat);
+      ShowMessage(rsNotReasonableFormat + ' (> 256x256)');
       result := false;
     end;
   end;