]> git.donarmstrong.com Git - xournal.git/blobdiff - src/xo-misc.c
Update to version 0.3.
[xournal.git] / src / xo-misc.c
index b85c284d58d14a9443e45331dd7f689d07051c0f..f6dab78589c88d60ee752eb336c6a5a27a3a1e79 100644 (file)
@@ -1,3 +1,6 @@
+// comment out the line below if you want the thickness settings of v 0.2
+#define NEW_THICKNESS
+
 #ifdef HAVE_CONFIG_H
 #  include <config.h>
 #endif
@@ -27,11 +30,19 @@ guint predef_bgcolors_rgba[COLOR_MAX] = // meaningless ones set to white
     0xffffffff, 0xa0e8ffff, 0x80ffc0ff, 0xffc0d4ff,
     0xffc080ff, 0xffff80ff, 0xffffffff };
 
+#ifdef NEW_THICKNESS
+double predef_thickness[NUM_STROKE_TOOLS][THICKNESS_MAX] =
+  { { 0.42, 0.85, 1.41,  2.26, 5.67 }, // pen thicknesses = 0.15, 0.3, 0.5, 0.8, 2 mm
+    { 2.83, 2.83, 8.50, 19.84, 19.84 }, // eraser thicknesses = 1, 2.5, 5 mm
+    { 2.83, 2.83, 8.50, 19.84, 19.84 }, // highlighter thicknesses = 1, 2.5, 5 mm
+  };
+#else
 double predef_thickness[NUM_STROKE_TOOLS][THICKNESS_MAX] =
   { { 0.42, 0.85, 1.41,  2.26, 5.67 }, // pen thicknesses = 0.15, 0.3, 0.5, 0.8, 2 mm
     { 2.83, 2.83, 7.08, 14.17, 14.17 }, // eraser thicknesses = 1, 2.5, 5 mm
     { 2.83, 2.83, 7.08, 14.17, 14.17 }, // highlighter thicknesses = 1, 2.5, 5 mm
   };
+#endif
 
 // some manipulation functions