Hello Charlie! Welcome to the new forum!
Let’s troubleshoot together. Are you still able to see the app title and the buttons to control the window, as in the image below?
If not, then it does indeed sound like your app has been put into fullscreen mode. If that’s the case, one solution may be to change a line of code in a file called window-state.json
. This can be done by following these steps (Windows only):
- Press ⊞ Win + R
- Type
%appdata%/navigraph_charts
into the field labeled “Open” - Open
window-state.json
(Perhaps without the.json
extension) in an editor of your choice (Notepad works just fine!) - Look for the word
"isFullScreen":
and make sure that the value that comes right after it isfalse
.
The file contents should now look something like this (the numbers will vary):
{
"width": 1322,
"height": 800,
"x": -1337,
"y": 246,
"isMaximized": false,
"isFullScreen": false,
"displayBounds": { "x": -1920, "y": 174, "width": 1920, "height": 1080 }
}
If this does not resolve the issue, please do not hesitate to tell me and we’ll figure it out together!
We are unsure as to how the application got put in fullscreen mode in the first place and apologize for any inconvenience caused.
Cheers!
Malte