Files
linuxcnc/configs/sim.axis.ngcgui/axis_resize.py
Thaddeus-Maximus f3953d66ae ?
2026-04-03 15:58:58 -05:00

15 lines
368 B
Python
Executable File

# user command file to increase default axis gui size
# invoke with the ini file item:
# [DISPLAY]USER_COMMAND_FILE = axis_resize.py
maxgeo=root_window.tk.call("wm","maxsize",".")
# custom size (to accommodate bigger gladevcp panels)
newsize = '800' + 'x' + '680'
# for fullsize: uncomment this
# newsize=fullsize
root_window.tk.call("wm","geometry",".",newsize)