-
I am using this to build a small console application for a personal project. Is there a way to hide the logs pane? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
Hello! Yes, you can hide the logs: add the property: options.logLocation
Set it to "popup" and you will move the logs to a modal window that appears only by pressing a key. Let me know if it's allright! |
Beta Was this translation helpful? Give feedback.
-
Hey, thanks for the fast response! It seems to work but now there is just a blank bottom section (where the logs used to appear): |
Beta Was this translation helpful? Give feedback.
-
Yes, that's because you are using the "double" layout. (read the README
file in the layout section)
You can change it to a single layout to keep only the main box.
|
Beta Was this translation helpful? Give feedback.
-
Worked, thanks for the help! |
Beta Was this translation helpful? Give feedback.
Hello! Yes, you can hide the logs:
add the property: options.logLocation
Choose where the logs are displayed: number (0,1) - to pot them on one of the two layouts, string ("popup") - to put them on a CustomPopup that can be displayed on the window.
Set it to "popup" and you will move the logs to a modal window that appears only by pressing a key.
The key to show log popup is
options.showLogKey
.Let me know if it's allright!