Disable lookfrom icon in viewport?
Comments
-
Hi,
In BricsCAD this is controlled by the system variable
NAVCUBEDISPLAY.You can find it easily via Settings (type
SETTINGSand search for "navcube" or "lookfrom").BricsCAD also clearly indicates that this variable is saved in the DWG (shown in the lower-left corner of the Settings panel).
To disable the NavCube / LookFrom:
NAVCUBEDISPLAY = 0Because it is stored per drawing, this only affects the current DWG.
If you want to disable it by default for all drawings, you can use a small Lisp file. For example, create a file
MySettings.lspwith:(setvar "NAVCUBEDISPLAY" 0)Load it via command
APPLOAD, or include it in your startup routine (e.g.on_doc_load.lsp), so it runs automatically when a drawing is opened.You can of course extend this approach with additional settings over time.
0