We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While using Snowflake by running jar file on MacOS, I can't resize line width in Terminal window. It seems that it is fixed to 80 characters.
The text was updated successfully, but these errors were encountered:
Will check it on mac
Sorry, something went wrong.
Same thing happening on linux
you can replace in src/main/java/snowflake/components/terminal/TerminalHolder.java
Dimension dimension = new Dimension(200, this.cmbTerminals.getPreferredSize().height);
with
Dimension dimension = new Dimension(this.cmbTerminals.getPreferredSize().width, this.cmbTerminals.getPreferredSize().height);
and then compile yourself to resolve this issue (only tested in linux but I assume it will fix in other OSs)
No branches or pull requests
While using Snowflake by running jar file on MacOS, I can't resize line width in Terminal window. It seems that it is fixed to 80 characters.
The text was updated successfully, but these errors were encountered: