[cairo-commit] xsvg/src args.c,1.10,1.11 xsvg.c,1.28,1.29
Carl Worth
commit at pdx.freedesktop.org
Mon Apr 11 12:24:46 PDT 2005
Committed by: cworth
Update of /cvs/cairo/xsvg/src
In directory gabe:/tmp/cvs-serv32199/src
Modified Files:
args.c xsvg.c
Log Message:
* src/args.c: (args_help): Remove -F option from documentation as
it is currently unimplemented.
* src/xsvg.c: (main): Fix uninitialized value for
win->full_mode. This fixes the bug which would cause the window to
come up at fullscreen size sometimes.
Index: args.c
===================================================================
RCS file: /cvs/cairo/xsvg/src/args.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- args.c 16 Feb 2005 03:47:36 -0000 1.10
+++ args.c 11 Apr 2005 19:24:44 -0000 1.11
@@ -93,7 +93,6 @@
printf (" --flipx \tFlip X coordinates\n");
printf (" --flipy \tFlip Y coordinates\n");
printf (" -f, --fit \tZoom to fit in window\n");
- printf (" -F, --full \tFull screen\n");
printf (" -a, --argb \tUse an ARGB window\n");
puts ("");
printf (" --help \tGive this help list\n");
Index: xsvg.c
===================================================================
RCS file: /cvs/cairo/xsvg/src/xsvg.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- xsvg.c 21 Feb 2005 20:48:30 -0000 1.28
+++ xsvg.c 11 Apr 2005 19:24:44 -0000 1.29
@@ -225,7 +225,7 @@
return 1;
}
- /* win.full_mode = args.full; */
+ win.full_mode = 0;
win_init (&win, dpy, args.argb, args.geometry,
args.svg_files, args.svg_nfile);
win.zoom *= args.scale;
More information about the cairo-commit
mailing list