diff --git a/doc/xschem_man/dashes.png b/doc/xschem_man/dashes.png new file mode 100644 index 00000000..35f672c2 Binary files /dev/null and b/doc/xschem_man/dashes.png differ diff --git a/doc/xschem_man/xschem_properties.html b/doc/xschem_man/xschem_properties.html index 510b652c..184b3691 100644 --- a/doc/xschem_man/xschem_properties.html +++ b/doc/xschem_man/xschem_properties.html @@ -134,6 +134,30 @@ p{padding: 15px 30px 10px;} By doing so you have defined a specific pin ordering of the symbol.

+ +

PRIMITIVE OBJECT PROPERTIES

+

+ The following attribute may be set on lines, arcs, polygons, rectangles: +

+

+

+ The following attribute may be set on arcs and polygons: +

+

+

+ The following attribute may be set on wires and lines: +

+

+ + + +
diff --git a/src/xinit.c b/src/xinit.c index ebf3b4cb..bf3d6579 100644 --- a/src/xinit.c +++ b/src/xinit.c @@ -1102,7 +1102,6 @@ int Tcl_AppInit(Tcl_Interp *inter) split_files=atoi(tclgetvar("split_files")); netlist_show=atoi(tclgetvar("netlist_show")); - fullscreen=atoi(tclgetvar("fullscreen")); unzoom_nodrift=atoi(tclgetvar("unzoom_nodrift")); if(color_ps==-1) @@ -1351,16 +1350,23 @@ int Tcl_AppInit(Tcl_Interp *inter) #endif /* END X INITIALIZATION */ + init_done=1; /* 20171008 moved before option processing, otherwise xwin_exit will not be invoked */ /* leaving undo buffer and other garbage around. */ - /* */ /* Completing tk windows creation (see xschem.tcl, build_windows) and event binding */ /* *AFTER* X initialization done */ /* */ tcleval("build_windows"); + fullscreen=atoi(tclgetvar("fullscreen")); + if(fullscreen) { + fullscreen = 0; + tcleval("update"); + toggle_fullscreen(); + } + /* */ /* START PROCESSING USER OPTIONS */ /* */