X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTProgressBar.java;h=38f03373b7c8d5d08f323f0e56fa34bac1516048;hb=d49a676fd2bdd860e05fc65b8cd4833bb0ad8e51;hp=6ed5ccf752dbb8553bf7308be4165c165f6a8b43;hpb=4b7ac2598c005c634966d9c415425bc6c7bc144b;p=fanfix.git 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");