X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fttree%2FTTreeItem.java;h=759bfb7a857ff3878c7986c63a26adafb1468f3f;hb=a69ed767c9c07cf35cf1c5f7821fc009cfe79cd2;hp=901ce8590a78095bdf00a5831f86331b5b84d9e9;hpb=d625990deaa2c24624adc9fbd3fcab58891f5aef;p=fanfix.git diff --git a/src/jexer/ttree/TTreeItem.java b/src/jexer/ttree/TTreeItem.java index 901ce85..759bfb7 100644 --- a/src/jexer/ttree/TTreeItem.java +++ b/src/jexer/ttree/TTreeItem.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2017 Kevin Lamonte + * Copyright (C) 2019 Kevin Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -248,7 +248,7 @@ public class TTreeItem extends TWidget { } // Blank out the background - getScreen().hLineXY(0, 0, getWidth(), ' ', color); + hLineXY(0, 0, getWidth(), ' ', color); String line = prefix; if (level > 0) { @@ -264,20 +264,17 @@ public class TTreeItem extends TWidget { line += " "; } } - getScreen().putStringXY(offset, 0, line, color); + putStringXY(offset, 0, line, color); if (selected) { - getScreen().putStringXY(offset + line.length(), 0, text, - selectedColor); + putStringXY(offset + line.length(), 0, text, selectedColor); } else { - getScreen().putStringXY(offset + line.length(), 0, text, textColor); + putStringXY(offset + line.length(), 0, text, textColor); } if ((level > 0) && (expandable)) { if (expanded) { - getScreen().putCharXY(offset + getExpanderX(), 0, '-', - expanderColor); + putCharXY(offset + getExpanderX(), 0, '-', expanderColor); } else { - getScreen().putCharXY(offset + getExpanderX(), 0, '+', - expanderColor); + putCharXY(offset + getExpanderX(), 0, '+', expanderColor); } } }