From: Kevin Lamonte Date: Wed, 28 Aug 2019 00:54:31 +0000 (-0500) Subject: #54 fix crash X-Git-Url: http://git.nikiroo.be/?a=commitdiff_plain;h=d49a676fd2bdd860e05fc65b8cd4833bb0ad8e51;hp=4b7ac2598c005c634966d9c415425bc6c7bc144b;p=fanfix.git #54 fix crash --- diff --git a/src/jexer/TProgressBar.java b/src/jexer/TProgressBar.java index 6ed5ccf..38f0337 100644 --- a/src/jexer/TProgressBar.java +++ b/src/jexer/TProgressBar.java @@ -123,6 +123,12 @@ public class TProgressBar extends TWidget { */ @Override public void draw() { + + if (getWidth() <= 2) { + // Bail out, we are too narrow to draw anything. + return; + } + CellAttributes completeColor = getTheme().getColor("tprogressbar.complete"); CellAttributes incompleteColor = getTheme().getColor("tprogressbar.incomplete");