draw_image(): add cairo_flush() to flush pending paints. In some cases a black square was exported instead of the image... Update Changelog for upcoming 3.4.6
This commit is contained in:
parent
a79e4304d9
commit
aaac47720f
11
Changelog
11
Changelog
|
|
@ -1,4 +1,15 @@
|
||||||
3.4.6:
|
3.4.6:
|
||||||
|
- do not reset xctx->netlist_name after doing `Netlist` from gui (xschem netlist -erc)
|
||||||
|
- process tcleval(....) (if present) in symbol `name` argument
|
||||||
|
- let symbol name entry box in component edit property dialog box expand in X direction
|
||||||
|
if dialog box is enlarged
|
||||||
|
- replace "UNDEF" with "-" in backannotated nodes that have no value in raw file.
|
||||||
|
- draw node names in graphs even if specified file / analysis (graph rawfile or sim_type
|
||||||
|
attributes) is not loaded
|
||||||
|
- if autoload is set in graph and a filename is given (rawfile graph attr) load raw file immediately
|
||||||
|
when drawing graph. Don`t wait for user to load an intiial raw file to trigger auto loading
|
||||||
|
- double clicking in the center of a graph will now bring up the graph edit attributes
|
||||||
|
dialog box even if no raw file is loaded
|
||||||
- Graphs will autoload (if autoload checked) raw data even if no raw file is specified in
|
- Graphs will autoload (if autoload checked) raw data even if no raw file is specified in
|
||||||
graph dialog box (use current loaded raw file, usually with a different analysis)
|
graph dialog box (use current loaded raw file, usually with a different analysis)
|
||||||
- Save 4 vars ( node, ph(node), re(node, im(node) ) instead of 2 ( node, ph(node )for ac plots
|
- Save 4 vars ( node, ph(node), re(node, im(node) ) instead of 2 ( node, ph(node )for ac plots
|
||||||
|
|
|
||||||
|
|
@ -2747,6 +2747,7 @@ void zoom_box(double x1, double y1, double x2, double y2, double factor)
|
||||||
xctx->mooz=1/xctx->zoom;
|
xctx->mooz=1/xctx->zoom;
|
||||||
xctx->xorigin=xctx->xorigin+xctx->areaw*xctx->zoom*(1-1/factor)/2;
|
xctx->xorigin=xctx->xorigin+xctx->areaw*xctx->zoom*(1-1/factor)/2;
|
||||||
xctx->yorigin=xctx->yorigin+xctx->areah*xctx->zoom*(1-1/factor)/2;
|
xctx->yorigin=xctx->yorigin+xctx->areah*xctx->zoom*(1-1/factor)/2;
|
||||||
|
dbg(1, "zoom_box(): zoom=%g\n", xctx->zoom);
|
||||||
}
|
}
|
||||||
|
|
||||||
void zoom_rectangle(int what)
|
void zoom_rectangle(int what)
|
||||||
|
|
|
||||||
|
|
@ -4451,6 +4451,7 @@ int draw_image(int dr, xRect *r, double *x1, double *y1, double *x2, double *y2,
|
||||||
* cairo_stroke(xctx->cairo_save_ctx); */
|
* cairo_stroke(xctx->cairo_save_ctx); */
|
||||||
cairo_clip(xctx->cairo_save_ctx);
|
cairo_clip(xctx->cairo_save_ctx);
|
||||||
cairo_paint_with_alpha(xctx->cairo_save_ctx, alpha);
|
cairo_paint_with_alpha(xctx->cairo_save_ctx, alpha);
|
||||||
|
cairo_surface_flush(xctx->cairo_save_sfc);
|
||||||
}
|
}
|
||||||
if(dr && xctx->draw_window) {
|
if(dr && xctx->draw_window) {
|
||||||
cairo_translate(xctx->cairo_ctx, x, y);
|
cairo_translate(xctx->cairo_ctx, x, y);
|
||||||
|
|
@ -4464,6 +4465,7 @@ int draw_image(int dr, xRect *r, double *x1, double *y1, double *x2, double *y2,
|
||||||
* cairo_stroke(xctx->cairo_ctx); */
|
* cairo_stroke(xctx->cairo_ctx); */
|
||||||
cairo_clip(xctx->cairo_ctx);
|
cairo_clip(xctx->cairo_ctx);
|
||||||
cairo_paint_with_alpha(xctx->cairo_ctx, alpha);
|
cairo_paint_with_alpha(xctx->cairo_ctx, alpha);
|
||||||
|
cairo_surface_flush(xctx->cairo_sfc);
|
||||||
}
|
}
|
||||||
if(dr) {
|
if(dr) {
|
||||||
cairo_restore(xctx->cairo_ctx);
|
cairo_restore(xctx->cairo_ctx);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue