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
pos
On TGMC, the UI gets shrunk to a small fraction of the window:
This is due to the following proc:
/client/proc/set_fullscreen(fullscreen_mode) // Note: fullscreen_mode is false if(fullscreen_mode) winset(src, "mainwindow", "is-maximized=false;can-resize=false;titlebar=false") winset(src, "mainwindow", "menu=null;statusbar=false") winset(src, "mainwindow.split", "pos=0x0") winset(src, "mainwindow", "is-maximized=true") return winset(src, "mainwindow", "is-maximized=false;can-resize=true;titlebar=true") winset(src, "mainwindow", "menu=menu;statusbar=true") winset(src, "mainwindow.split", "pos=3x0") // This is the problematic line. Commenting it out fixes the issue. winset(src, "mainwindow", "is-maximized=true")
Something is up with pos handling.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On TGMC, the UI gets shrunk to a small fraction of the window:
This is due to the following proc:
Something is up with
pos
handling.The text was updated successfully, but these errors were encountered: