Thank you for your project! I need to set a background image on the panel, and terminal transparency is required to not obscure the image.I try change the com.jediterm.core.Color:
public Color(int r, int g, int b) {
this(r, g, b, 0);
//this(r, g, b, 255);
}
but that not enough,JediTermWidget extend JPanel,so i add this in JediTermWidget Constructor,
now the terminal is transparent and the backgroundImage can be displayed normally,but the text seems to be constantly re rendering and getting blurry.
In addition, how to set the background color of the selected font? My font is black and the highlighted text is also black, which makes it completely invisible to see what has been selected.
Thank you for your project! I need to set a background image on the panel, and terminal transparency is required to not obscure the image.I try change the com.jediterm.core.Color:
but that not enough,JediTermWidget extend JPanel,so i add this in JediTermWidget Constructor,
now the terminal is transparent and the backgroundImage can be displayed normally,but the text seems to be constantly re rendering and getting blurry. In addition, how to set the background color of the selected font? My font is black and the highlighted text is also black, which makes it completely invisible to see what has been selected.