We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c613aa commit e9a3e89Copy full SHA for e9a3e89
1 file changed
source/terminal/TerminalImageRenderer.java
@@ -56,7 +56,8 @@ private static BufferedImage scaleToWidth(BufferedImage src, int targetWidth)
56
int srcWidth = src.getWidth();
57
int srcHeight = src.getHeight();
58
59
- if (srcWidth <= targetWidth) {
+ if (srcWidth <= targetWidth)
60
+ {
61
return src; // no scaling needed
62
}
63
0 commit comments