From a21c48689604ad7142a02d6f0a8dd4776e8d4422 Mon Sep 17 00:00:00 2001
From: Good Guy <good1.2guy@gmail.com>
Date: Fri, 7 Sep 2018 17:12:42 -0600
Subject: [PATCH] olaf: neophyte theme update + de.po, fullscreen geom tweak

---
 cinelerra-5.1/cinelerra/canvas.C              |  19 +-
 cinelerra-5.1/guicast/bcwindowbase.C          |  32 +
 cinelerra-5.1/guicast/bcwindowbase.h          |   1 +
 .../theme_neophyte/data/Source/plugin_bg.svg  | 109 ++-
 .../data/Source/resource1024.svg              |  16 +-
 .../data/Source/resource128.svg               |  60 +-
 .../data/Source/resource256.svg               |  62 +-
 .../theme_neophyte/data/Source/resource32.svg |  16 +-
 .../data/Source/resource512.svg               |  66 +-
 .../theme_neophyte/data/Source/resource64.svg | 447 +++++++++++--
 .../theme_neophyte/data/Source/title_bg.svg   | 621 +++++++++++++++++-
 .../plugins/theme_neophyte/data/plugin_bg.png | Bin 266 -> 224 bytes
 .../theme_neophyte/data/resource1024.png      | Bin 7235 -> 7225 bytes
 .../theme_neophyte/data/resource128.png       | Bin 524 -> 527 bytes
 .../theme_neophyte/data/resource256.png       | Bin 1122 -> 1122 bytes
 .../theme_neophyte/data/resource32.png        | Bin 345 -> 339 bytes
 .../theme_neophyte/data/resource512.png       | Bin 2479 -> 2481 bytes
 .../theme_neophyte/data/resource64.png        | Bin 424 -> 424 bytes
 .../plugins/theme_neophyte/data/title_bg.png  | Bin 349 -> 327 bytes
 .../plugins/theme_neophyte/neophyte.C         |   8 +-
 cinelerra-5.1/po/de.po                        |  22 +-
 21 files changed, 1176 insertions(+), 303 deletions(-)

diff --git a/cinelerra-5.1/cinelerra/canvas.C b/cinelerra-5.1/cinelerra/canvas.C
index dc6d44a5..4f9d9234 100644
--- a/cinelerra-5.1/cinelerra/canvas.C
+++ b/cinelerra-5.1/cinelerra/canvas.C
@@ -739,23 +739,8 @@ void Canvas::create_canvas()
 			wdw->stop_video();
 		}
 
-		int x = subwindow->get_screen_x(0, -1);
-		int y = subwindow->get_screen_y(0, -1);
-		int w = root_w;
-		int h = root_h;
-		if( mwindow->screens == 1 && root_w > scr_w0 ) {
-			// Xinerama
-			if( subwindow->get_x() >= scr_w0 ) {
-				// assumes right side is the big one
-				w = root_w - scr_w0;
-				h = root_h;
-			}
-			else {
-				// use same aspect ratio to compute left height
-				w = scr_w0;
-				h = (w*root_h) / (root_w-scr_w0);
-			}
-		}
+		int x, y, w, h;
+		wdw->get_fullscreen_geometry(x, y, w, h);
 
 		if( canvas_fullscreen )
 		{
diff --git a/cinelerra-5.1/guicast/bcwindowbase.C b/cinelerra-5.1/guicast/bcwindowbase.C
index 421a26fe..f5759dd8 100644
--- a/cinelerra-5.1/guicast/bcwindowbase.C
+++ b/cinelerra-5.1/guicast/bcwindowbase.C
@@ -3467,6 +3467,38 @@ BC_WindowBase::get_xinerama_info(int screen)
 	return 0;
 }
 
+void BC_WindowBase::get_fullscreen_geometry(int &wx, int &wy, int &ww, int &wh)
+{
+	XineramaScreenInfo *info = top_level->get_xinerama_info(-1);
+	if( info ) {
+		wx = info->x_org;  wy = info->y_org;
+		ww = info->width;  wh = info->height;
+	}
+	else {
+		wx = get_screen_x(0, -1);
+		wy = get_screen_y(0, -1);
+		int scr_w0 = get_screen_w(0, 0);
+		int root_w = get_root_w(0);
+		int root_h = get_root_h(0);
+		if( root_w > scr_w0 ) { // multi-headed
+			if( wx >= scr_w0 ) {
+				// assumes right side is the big one
+				ww = root_w - scr_w0;
+				wh = root_h;
+			}
+			else {
+				// use same aspect ratio to compute left height
+				ww = scr_w0;
+				wh = (w*root_h) / (root_w-scr_w0);
+			}
+		}
+		else {
+			ww = root_w;
+			wh = root_h;
+		}
+	}
+}
+
 int BC_WindowBase::get_screen_x(int lock_display, int screen)
 {
 	int result = -1;
diff --git a/cinelerra-5.1/guicast/bcwindowbase.h b/cinelerra-5.1/guicast/bcwindowbase.h
index a1f930de..336b9693 100644
--- a/cinelerra-5.1/guicast/bcwindowbase.h
+++ b/cinelerra-5.1/guicast/bcwindowbase.h
@@ -277,6 +277,7 @@ public:
 	int get_root_w(int lock_display);
 	int get_root_h(int lock_display);
 	XineramaScreenInfo *get_xinerama_info(int screen);
+	void get_fullscreen_geometry(int &wx, int &wy, int &ww, int &wh);
 	int get_screen_w(int lock_display, int screen);
 	int get_screen_h(int lock_display, int screen);
 	int get_screen_x(int lock_display, int screen);
diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_bg.svg
index 3fe143af..90634fa3 100644
--- a/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_bg.svg
+++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/plugin_bg.svg
@@ -84,7 +84,7 @@
        xlink:href="#linearGradient1817"
        id="linearGradient895-9"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.5769228,0,0,0.52941163,-159.59297,-73.634019)"
+       gradientTransform="matrix(3.5769228,0,0,0.52941163,-95.810222,-74.228268)"
        x1="44.737286"
        y1="1.0084742"
        x2="44.737286"
@@ -98,7 +98,7 @@
        x2="44.737286"
        y2="18.728813"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.5769228,0,0,0.52941163,-163.23962,54.261106)" />
+       gradientTransform="matrix(3.5769228,0,0,0.52941163,-227.02237,54.855355)" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient1817-5"
@@ -108,7 +108,7 @@
        x2="44.737286"
        y2="18.728813"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.5769228,0,0,1.0588232,-114.49633,-35.281635)" />
+       gradientTransform="matrix(3.5769228,0,0,1.0588232,-230.96917,25.72795)" />
   </defs>
   <sodipodi:namedview
      pagecolor="#ffffff"
@@ -123,15 +123,36 @@
      inkscape:window-height="744"
      id="namedview4"
      showgrid="false"
-     inkscape:zoom="8.2267692"
-     inkscape:cx="42.331542"
-     inkscape:cy="9.4795341"
+     inkscape:zoom="14.278995"
+     inkscape:cx="46.5"
+     inkscape:cy="9"
      inkscape:window-x="50"
      inkscape:window-y="24"
      inkscape:window-maximized="1"
      inkscape:current-layer="layer2"
      inkscape:showpageshadow="false"
-     borderlayer="true" />
+     borderlayer="true">
+    <sodipodi:guide
+       position="0,0"
+       orientation="0,93"
+       id="guide4218"
+       inkscape:locked="false" />
+    <sodipodi:guide
+       position="93,0"
+       orientation="-18,0"
+       id="guide4220"
+       inkscape:locked="false" />
+    <sodipodi:guide
+       position="93,18"
+       orientation="0,-93"
+       id="guide4222"
+       inkscape:locked="false" />
+    <sodipodi:guide
+       position="0,18"
+       orientation="18,0"
+       id="guide4224"
+       inkscape:locked="false" />
+  </sodipodi:namedview>
   <g
      inkscape:groupmode="layer"
      id="layer1"
@@ -163,8 +184,8 @@
        inkscape:transform-center-y="-34.342165" />
     <rect
        ry="0"
-       y="24.065426"
-       x="0.17078727"
+       y="94.384918"
+       x="-116.50014"
        height="16.970814"
        width="91.97081"
        id="rect2818-5"
@@ -175,8 +196,8 @@
        id="rect3597-9-2-4-3-1-9-4-7"
        width="92.50132"
        height="17.501316"
-       x="0.24934006"
-       y="0.24934196"
+       x="0.49868393"
+       y="-22.791494"
        inkscape:transform-center-x="18.420788"
        inkscape:transform-center-y="-33.390726" />
     <rect
@@ -184,8 +205,8 @@
        id="rect3597-9-2-4-3-1-9-4-1"
        width="93"
        height="9"
-       x="-48.323315"
-       y="54.947563"
+       x="-112.10606"
+       y="55.541813"
        inkscape:transform-center-x="18.520099"
        inkscape:transform-center-y="-17.171083" />
     <rect
@@ -193,8 +214,8 @@
        id="rect3597-9-2-4-3-1-9-4-0-3"
        width="93"
        height="9"
-       x="-44.676685"
-       y="-72.947563"
+       x="19.106062"
+       y="-73.541809"
        inkscape:transform-center-x="-18.520102"
        inkscape:transform-center-y="17.171084"
        transform="scale(-1)" />
@@ -203,41 +224,63 @@
        id="rect3597-9-2-4-3-1-9-4-7-1"
        width="92.50132"
        height="17.501316"
-       x="-48.073975"
-       y="55.196907"
+       x="-111.85672"
+       y="55.791157"
        inkscape:transform-center-x="18.420788"
        inkscape:transform-center-y="-33.390726" />
     <rect
-       style="fill:#5f8dd3;fill-opacity:0.5;stroke:none;stroke-width:0.76801819"
-       id="rect3611-3-64-8-2"
-       width="93"
-       height="18"
-       x="0"
-       y="0" />
-    <rect
-       style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-2-0);fill-opacity:1;stroke:none;stroke-width:0.499;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-2-0);fill-opacity:1;stroke:none;stroke-width:0.49900001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
        id="rect3597-9-2-4-3-1-9-7-0"
        width="93"
        height="18"
-       x="0.41999695"
-       y="-33.908703"
+       x="-116.05285"
+       y="27.100882"
        inkscape:transform-center-x="18.520099"
        inkscape:transform-center-y="-34.342165" />
     <rect
-       style="display:inline;fill:none;fill-opacity:1;stroke:#3771c8;stroke-width:0.499;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       style="display:inline;fill:none;fill-opacity:1;stroke:#3771c8;stroke-width:0.49900001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
        id="rect3597-9-2-4-3-1-9-4-7-3"
        width="92.50132"
        height="17.501316"
-       x="0.66933697"
-       y="-33.659359"
+       x="-115.8035"
+       y="27.350225"
        inkscape:transform-center-x="18.420788"
        inkscape:transform-center-y="-33.390726" />
     <rect
-       style="fill:#5f8dd3;fill-opacity:0.5;stroke:none;stroke-width:0.499;stroke-miterlimit:4;stroke-dasharray:none"
+       style="fill:#5f8dd3;fill-opacity:0.5;stroke:none;stroke-width:0.49900001;stroke-miterlimit:4;stroke-dasharray:none"
        id="rect3611-3-64-8-2-9"
        width="93"
        height="18"
-       x="0.41999695"
-       y="-33.908703" />
+       x="-116.05285"
+       y="27.100882" />
+    <rect
+       style="fill:#5f8dd3;fill-opacity:0.5;stroke:none;stroke-width:0.76801819"
+       id="rect3611-3-64-8-2"
+       width="93"
+       height="18"
+       x="0"
+       y="0" />
+    <rect
+       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34238577;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect867-5-7"
+       width="1"
+       height="18"
+       x="0"
+       y="0" />
+    <rect
+       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34238577;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect867-5-7-8"
+       width="1"
+       height="18"
+       x="92"
+       y="0" />
+    <rect
+       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.0512836;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect867-5-7-5"
+       width="1"
+       height="93"
+       x="-27.454447"
+       y="7.9292162e-16"
+       transform="rotate(-90)" />
   </g>
 </svg>
diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource1024.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource1024.svg
index 610ce3f4..961b56ce 100644
--- a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource1024.svg
+++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource1024.svg
@@ -27,7 +27,7 @@
         <dc:format>image/svg+xml</dc:format>
         <dc:type
            rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title></dc:title>
+        <dc:title />
         <dc:date>2018-08-01</dc:date>
         <dc:creator>
           <cc:Agent>
@@ -127,9 +127,9 @@
      inkscape:window-height="721"
      id="namedview4"
      showgrid="false"
-     inkscape:zoom="0.92578125"
-     inkscape:cx="234.9415"
-     inkscape:cy="552.99516"
+     inkscape:zoom="0.87697814"
+     inkscape:cx="512"
+     inkscape:cy="512"
      inkscape:window-x="0"
      inkscape:window-y="27"
      inkscape:window-maximized="1"
@@ -201,9 +201,9 @@
      height="1023.9996"
      width="1"
      id="rect3613-6"
-     style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:3.99999928" />
+     style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.99999928" />
   <rect
-     style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:3.99999928"
+     style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.99999928"
      id="rect3615-4"
      width="1"
      height="1023.9996"
@@ -216,13 +216,13 @@
      height="1023.9996"
      width="1"
      id="rect2829-0"
-     style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:3.99999928" />
+     style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.99999928" />
   <rect
      style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:3.99999928"
      id="rect3611-0"
      width="1"
      height="1023.9996"
-     x="-1"
+     x="57.154243"
      y="-1023.9998"
      transform="matrix(0,-1,-1,0,0,0)" />
 </svg>
diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource128.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource128.svg
index e8be68b9..a55ff58f 100644
--- a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource128.svg
+++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource128.svg
@@ -65,16 +65,6 @@
          offset="1"
          id="stop3607" />
     </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3603"
-       id="linearGradient2868"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(4,0,0,4,-61.389685,-24.373882)"
-       x1="-22.661018"
-       y1="0.15254237"
-       x2="-22.661018"
-       y2="32.217113" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient1817"
@@ -121,50 +111,12 @@
      id="namedview4"
      showgrid="false"
      inkscape:zoom="3.703125"
-     inkscape:cx="-32.810127"
-     inkscape:cy="64"
+     inkscape:cx="-10.936709"
+     inkscape:cy="62.649789"
      inkscape:window-x="0"
      inkscape:window-y="27"
      inkscape:window-maximized="1"
      inkscape:current-layer="svg2" />
-  <rect
-     style="fill:url(#linearGradient2868);fill-opacity:1;stroke:none"
-     id="rect2818"
-     width="128"
-     height="128"
-     x="-216.03375"
-     y="-23.763714" />
-  <rect
-     transform="scale(-1,1)"
-     y="-23.763714"
-     x="88.033752"
-     height="128"
-     width="1"
-     id="rect3613"
-     style="fill:#333333;fill-opacity:1;stroke:none" />
-  <rect
-     style="fill:#333333;fill-opacity:1;stroke:none"
-     id="rect3615"
-     width="1"
-     height="128"
-     x="103.23629"
-     y="-216.03375"
-     transform="matrix(0,1,1,0,0,0)" />
-  <rect
-     y="-23.763714"
-     x="-216.03375"
-     height="128"
-     width="1"
-     id="rect2829"
-     style="fill:#989898;fill-opacity:1;stroke:none" />
-  <rect
-     style="fill:#989898;fill-opacity:1;stroke:none"
-     id="rect3611"
-     width="1"
-     height="128"
-     x="22.763714"
-     y="88.033752"
-     transform="matrix(0,-1,-1,0,0,0)" />
   <g
      transform="matrix(1.9999998,0,0,1.9999998,6.4e-6,5.5230179e-6)"
      id="g905">
@@ -191,9 +143,9 @@
      height="127.99998"
      width="1"
      id="rect3613-1"
-     style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:1.41421342" />
+     style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.41421342" />
   <rect
-     style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:1.41421342"
+     style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.41421342"
      id="rect3615-1"
      width="1"
      height="127.99998"
@@ -206,13 +158,13 @@
      height="127.99998"
      width="1"
      id="rect2829-0"
-     style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:1.41421342" />
+     style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.41421342" />
   <rect
      style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:1.41421342"
      id="rect3611-3"
      width="1"
      height="127.99998"
-     x="-1"
+     x="5.2109704"
      y="-127.99998"
      transform="matrix(0,-1,-1,0,0,0)" />
 </svg>
diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource256.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource256.svg
index 19b244eb..81ba9fc3 100644
--- a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource256.svg
+++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource256.svg
@@ -27,7 +27,7 @@
         <dc:format>image/svg+xml</dc:format>
         <dc:type
            rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title></dc:title>
+        <dc:title />
         <dc:date>2018-08-01</dc:date>
         <dc:creator>
           <cc:Agent>
@@ -72,16 +72,6 @@
          offset="1"
          id="stop3607" />
     </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3603"
-       id="linearGradient2868"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(8,0,0,8,-139.52199,-40.6465)"
-       x1="-22.661018"
-       y1="0.15254237"
-       x2="-22.661018"
-       y2="32.217113" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient1817"
@@ -128,51 +118,13 @@
      id="namedview4"
      showgrid="false"
      inkscape:zoom="1.8515625"
-     inkscape:cx="-65.620253"
-     inkscape:cy="41.586498"
+     inkscape:cx="203.88186"
+     inkscape:cy="133.40084"
      inkscape:window-x="0"
      inkscape:window-y="27"
      inkscape:window-maximized="1"
      inkscape:current-layer="svg2"
      inkscape:showpageshadow="false" />
-  <rect
-     style="fill:url(#linearGradient2868);fill-opacity:1;stroke:none"
-     id="rect2818"
-     width="256"
-     height="256"
-     x="-448.81012"
-     y="-39.426159" />
-  <rect
-     transform="scale(-1,1)"
-     y="-39.426159"
-     x="192.81012"
-     height="256"
-     width="1"
-     id="rect3613"
-     style="fill:#333333;fill-opacity:1;stroke:none" />
-  <rect
-     style="fill:#333333;fill-opacity:1;stroke:none"
-     id="rect3615"
-     width="1"
-     height="256"
-     x="215.57384"
-     y="-448.81012"
-     transform="matrix(0,1,1,0,0,0)" />
-  <rect
-     y="-39.426159"
-     x="-448.81012"
-     height="256"
-     width="1"
-     id="rect2829"
-     style="fill:#989898;fill-opacity:1;stroke:none" />
-  <rect
-     style="fill:#989898;fill-opacity:1;stroke:none"
-     id="rect3611"
-     width="1"
-     height="256"
-     x="38.426159"
-     y="192.81012"
-     transform="matrix(0,-1,-1,0,0,0)" />
   <g
      transform="matrix(3.9999994,0,0,3.9999994,2.4570607e-5,3.3955078e-5)"
      id="g905">
@@ -199,9 +151,9 @@
      height="255.99995"
      width="1"
      id="rect3613-6"
-     style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:1.99999976" />
+     style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.99999976" />
   <rect
-     style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:1.99999976"
+     style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.99999976"
      id="rect3615-2"
      width="1"
      height="255.99995"
@@ -214,13 +166,13 @@
      height="255.99995"
      width="1"
      id="rect2829-9"
-     style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:1.99999976" />
+     style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.99999976" />
   <rect
      style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:2.00039053"
      id="rect3611-9"
      width="1"
      height="256.10001"
-     x="-1"
+     x="43.827003"
      y="-256.04999"
      transform="matrix(0,-1,-1,0,0,0)" />
 </svg>
diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource32.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource32.svg
index 59792770..b2cc6c59 100644
--- a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource32.svg
+++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource32.svg
@@ -27,7 +27,7 @@
         <dc:format>image/svg+xml</dc:format>
         <dc:type
            rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title></dc:title>
+        <dc:title />
         <dc:date>2018-08-01</dc:date>
         <dc:creator>
           <cc:Agent>
@@ -121,8 +121,8 @@
      id="namedview4"
      showgrid="false"
      inkscape:zoom="20.85965"
-     inkscape:cx="4.6572231"
-     inkscape:cy="9.7690415"
+     inkscape:cx="13.669838"
+     inkscape:cy="14.17947"
      inkscape:window-x="0"
      inkscape:window-y="27"
      inkscape:window-maximized="1"
@@ -196,9 +196,9 @@
      height="31.999996"
      width="1"
      id="rect3613-9"
-     style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.70710671" />
+     style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.70710671" />
   <rect
-     style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.70710671"
+     style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.70710671"
      id="rect3615-6"
      width="1"
      height="31.999996"
@@ -211,13 +211,13 @@
      height="32"
      width="1"
      id="rect2829-9"
-     style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+     style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.70710677" />
   <rect
      style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:0.70710671"
      id="rect3611-3"
      width="1"
      height="31.999996"
-     x="-1"
-     y="-31.999996"
+     x="6.1909165"
+     y="-32.335571"
      transform="matrix(0,-1,-1,0,0,0)" />
 </svg>
diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource512.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource512.svg
index bc0b30ef..f1476503 100644
--- a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource512.svg
+++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource512.svg
@@ -27,7 +27,7 @@
         <dc:format>image/svg+xml</dc:format>
         <dc:type
            rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title></dc:title>
+        <dc:title />
         <dc:date>2018-08-01</dc:date>
         <dc:creator>
           <cc:Agent>
@@ -51,16 +51,6 @@
          offset="1"
          id="stop3607" />
     </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3603"
-       id="linearGradient2868"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(16,0,0,16,-721.11956,-220.88595)"
-       x1="-22.661018"
-       y1="0.15254237"
-       x2="-22.661018"
-       y2="32.217113" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient1817"
@@ -106,9 +96,9 @@
      inkscape:window-height="721"
      id="namedview4"
      showgrid="false"
-     inkscape:zoom="0.6546262"
-     inkscape:cx="-419.64078"
-     inkscape:cy="286.00079"
+     inkscape:zoom="2.4804688"
+     inkscape:cx="256"
+     inkscape:cy="368.88189"
      inkscape:window-x="0"
      inkscape:window-y="27"
      inkscape:window-maximized="1"
@@ -116,44 +106,6 @@
      showguides="true"
      inkscape:guide-bbox="true"
      inkscape:showpageshadow="false" />
-  <rect
-     style="fill:url(#linearGradient2868);fill-opacity:1;stroke:none"
-     id="rect2818"
-     width="512"
-     height="512"
-     x="-1339.6958"
-     y="-218.44528" />
-  <rect
-     transform="scale(-1,1)"
-     y="-218.44528"
-     x="827.69586"
-     height="512"
-     width="1"
-     id="rect3613"
-     style="fill:#333333;fill-opacity:1;stroke:none" />
-  <rect
-     style="fill:#333333;fill-opacity:1;stroke:none"
-     id="rect3615"
-     width="1"
-     height="512"
-     x="292.55472"
-     y="-1339.6958"
-     transform="matrix(0,1,1,0,0,0)" />
-  <rect
-     y="-218.44528"
-     x="-1339.6958"
-     height="512"
-     width="1"
-     id="rect2829"
-     style="fill:#989898;fill-opacity:1;stroke:none" />
-  <rect
-     style="fill:#989898;fill-opacity:1;stroke:none"
-     id="rect3611"
-     width="1"
-     height="512"
-     x="217.44528"
-     y="827.69586"
-     transform="matrix(0,-1,-1,0,0,0)" />
   <g
      transform="matrix(7.9999971,0,0,7.9999971,1.5213106e-4,3.0454102e-4)"
      id="g905">
@@ -180,9 +132,9 @@
      height="511.99982"
      width="1"
      id="rect3613-1"
-     style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:2.8284266" />
+     style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.8284266" />
   <rect
-     style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:2.8284266"
+     style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.8284266"
      id="rect3615-1"
      width="1"
      height="511.99982"
@@ -195,13 +147,13 @@
      height="511.99982"
      width="1"
      id="rect2829-0"
-     style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:2.8284266" />
+     style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.8284266" />
   <rect
      style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:2.8284266"
      id="rect3611-3"
      width="1"
      height="511.99982"
-     x="-1"
-     y="-511.99982"
+     x="39.718109"
+     y="-511.19351"
      transform="matrix(0,-1,-1,0,0,0)" />
 </svg>
diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource64.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource64.svg
index 499f66df..1396a951 100644
--- a/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource64.svg
+++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/resource64.svg
@@ -147,63 +147,93 @@
      inkscape:window-height="721"
      id="namedview4"
      showgrid="false"
-     inkscape:zoom="5.2149125"
-     inkscape:cx="26.033898"
-     inkscape:cy="25.956808"
+     inkscape:zoom="14.03165"
+     inkscape:cx="32"
+     inkscape:cy="29.984252"
      inkscape:window-x="0"
      inkscape:window-y="27"
      inkscape:window-maximized="1"
-     inkscape:current-layer="svg2"
+     inkscape:current-layer="layer2"
      inkscape:showpageshadow="false" />
   <g
-     id="g905">
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="res64"
+     style="display:inline">
+    <g
+       id="g905"
+       transform="matrix(1,0,0,1.0030052,0,-0.19204594)">
+      <rect
+         y="0.095879197"
+         x="3.8146973e-06"
+         height="32"
+         width="64"
+         id="rect2818"
+         style="fill:url(#linearGradient2868);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+      <rect
+         transform="scale(1,-1)"
+         y="-63.904121"
+         x="-3.8146973e-06"
+         height="32"
+         width="64"
+         id="rect2818-22"
+         style="fill:url(#linearGradient2868-0);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+    </g>
+    <g
+       id="g1126"
+       transform="matrix(1.016129,0,0,1,1.000002,0)"
+       style="fill:#000000;fill-opacity:1">
+      <rect
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         id="rect3613"
+         width="1"
+         height="64"
+         x="-62"
+         y="0"
+         transform="scale(-1,1)" />
+      <rect
+         transform="matrix(0,1,1,0,0,0)"
+         y="0"
+         x="63"
+         height="62"
+         width="1"
+         id="rect3615"
+         style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.98425096" />
+    </g>
+    <g
+       id="g1130"
+       transform="matrix(1.016129,0,0,1,-4.5611171,-3.9909775)">
+      <rect
+         style="fill:#474747;fill-opacity:1;stroke:none"
+         id="rect2829"
+         width="1"
+         height="64"
+         x="0"
+         y="0" />
+      <rect
+         transform="matrix(0,-1,-1,0,0,0)"
+         y="-62"
+         x="-1"
+         height="62"
+         width="1"
+         id="rect3611"
+         style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:0.98425096" />
+    </g>
     <rect
-       y="0.095879197"
-       x="3.8146973e-06"
-       height="32"
-       width="64"
-       id="rect2818"
-       style="fill:url(#linearGradient2868);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.53122687;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect867-5-7-1"
+       width="1"
+       height="64"
+       x="0"
+       y="0" />
     <rect
-       transform="scale(1,-1)"
-       y="-63.904121"
-       x="-3.8146973e-06"
-       height="32"
-       width="64"
-       id="rect2818-22"
-       style="fill:url(#linearGradient2868-0);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.53122687;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect867-5-7-1-0"
+       width="1"
+       height="64"
+       x="76.82589"
+       y="0.57013965" />
   </g>
-  <rect
-     transform="scale(-1,1)"
-     y="0"
-     x="-64"
-     height="64"
-     width="1"
-     id="rect3613"
-     style="fill:#141414;fill-opacity:1;stroke:none" />
-  <rect
-     style="fill:#141414;fill-opacity:1;stroke:none"
-     id="rect3615"
-     width="1"
-     height="64"
-     x="63"
-     y="0"
-     transform="matrix(0,1,1,0,0,0)" />
-  <rect
-     y="0"
-     x="0"
-     height="64"
-     width="1"
-     id="rect2829"
-     style="fill:#474747;fill-opacity:1;stroke:none" />
-  <rect
-     style="fill:#474747;fill-opacity:1;stroke:none"
-     id="rect3611"
-     width="1"
-     height="64"
-     x="-1"
-     y="-64"
-     transform="matrix(0,-1,-1,0,0,0)" />
   <rect
      style="fill:url(#linearGradient863);fill-opacity:1;stroke:none"
      id="rect2818-2"
@@ -242,4 +272,323 @@
      x="-3.1694915"
      y="98.711861"
      transform="matrix(0,-1,-1,0,0,0)" />
+  <g
+     inkscape:groupmode="layer"
+     id="layer1"
+     inkscape:label="Kachel"
+     style="display:none">
+    <g
+       id="g1120"
+       transform="translate(102.81034,17.217407)">
+      <rect
+         inkscape:tile-h="1"
+         inkscape:tile-w="1"
+         inkscape:tile-cy="-16.717407"
+         inkscape:tile-cx="-39.310341"
+         inkscape:tile-y0="-17.217407"
+         inkscape:tile-x0="-39.810341"
+         style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.12499999"
+         id="use957"
+         width="1"
+         height="1"
+         x="38.810341"
+         y="-17.217407"
+         transform="scale(-1,1)" />
+      <use
+         id="use1023"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1025"
+         transform="translate(0,2)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1027"
+         transform="translate(0,4)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1029"
+         transform="translate(0,6)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1031"
+         transform="translate(0,8)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1033"
+         transform="translate(0,10)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1035"
+         transform="translate(0,12)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1037"
+         transform="translate(0,14)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1039"
+         transform="translate(0,16)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1041"
+         transform="translate(0,18)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1043"
+         transform="translate(0,20)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1045"
+         transform="translate(0,22)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1047"
+         transform="translate(0,24)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1049"
+         transform="translate(0,26)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1051"
+         transform="translate(0,28)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1053"
+         transform="translate(0,30)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1055"
+         transform="translate(0,32)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1057"
+         transform="translate(0,34)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1059"
+         transform="translate(0,36)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1061"
+         transform="translate(0,38)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1063"
+         transform="translate(0,40)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1065"
+         transform="translate(0,42)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1067"
+         transform="translate(0,44)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1069"
+         transform="translate(0,46)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1071"
+         transform="translate(0,48)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1073"
+         transform="translate(0,50)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1075"
+         transform="translate(0,52)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1077"
+         transform="translate(0,54)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1079"
+         transform="translate(0,56)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1081"
+         transform="translate(0,58)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1083"
+         transform="translate(0,60)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use1085"
+         transform="translate(0,62)"
+         xlink:href="#use957"
+         inkscape:tiled-clone-of="#use957"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g1120"
+       id="use1122"
+       transform="translate(-62.999999,1.0000002)"
+       width="100%"
+       height="100%" />
+  </g>
 </svg>
diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/Source/title_bg.svg b/cinelerra-5.1/plugins/theme_neophyte/data/Source/title_bg.svg
index 877f5172..5bdd0cd9 100644
--- a/cinelerra-5.1/plugins/theme_neophyte/data/Source/title_bg.svg
+++ b/cinelerra-5.1/plugins/theme_neophyte/data/Source/title_bg.svg
@@ -40,6 +40,28 @@
   </metadata>
   <defs
      id="defs6">
+    <linearGradient
+       id="linearGradient2429">
+      <stop
+         style="stop-color:#404040;stop-opacity:1"
+         offset="0"
+         id="stop2425" />
+      <stop
+         style="stop-color:#141414;stop-opacity:1"
+         offset="1"
+         id="stop2427" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1817-5">
+      <stop
+         style="stop-color:#404040;stop-opacity:1"
+         offset="0"
+         id="stop2420" />
+      <stop
+         style="stop-color:#262626;stop-opacity:1"
+         offset="1"
+         id="stop2422" />
+    </linearGradient>
     <linearGradient
        id="linearGradient1817">
       <stop
@@ -59,7 +81,7 @@
        inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
        id="perspective10" />
     <linearGradient
-       id="linearGradient1817-5">
+       id="linearGradient1817-5-9">
       <stop
          id="stop1852"
          offset="0"
@@ -71,7 +93,7 @@
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient1817-5"
+       xlink:href="#linearGradient1817-5-9"
        id="linearGradient1811-8-5-0-7-3-2-2"
        x1="44.737286"
        y1="1.0084742"
@@ -79,6 +101,26 @@
        y2="18.728813"
        gradientUnits="userSpaceOnUse"
        gradientTransform="matrix(3.5769228,0,0,1.0588232,-114.91632,-1.3729308)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1817-5-9"
+       id="linearGradient1811-8-5-0-7-3-2-2-9"
+       x1="44.737286"
+       y1="1.0084742"
+       x2="44.737286"
+       y2="18.728813"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.5769228,0,0,1.0588232,-114.91632,-1.372932)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2429"
+       id="linearGradient2418"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.5769228,0,0,0.05882352,-113.88983,-8.904088)"
+       x1="32.127144"
+       y1="18.296661"
+       x2="58.127148"
+       y2="18.296661" />
   </defs>
   <sodipodi:namedview
      pagecolor="#ffffff"
@@ -93,18 +135,39 @@
      inkscape:window-height="744"
      id="namedview4"
      showgrid="false"
-     showguides="true"
+     showguides="false"
      inkscape:guide-bbox="true"
-     inkscape:zoom="5.2730785"
-     inkscape:cx="52.905362"
-     inkscape:cy="6.6045731"
+     inkscape:zoom="12.42379"
+     inkscape:cx="45.532436"
+     inkscape:cy="9.626071"
      inkscape:window-x="50"
      inkscape:window-y="24"
      inkscape:window-maximized="1"
-     inkscape:current-layer="layer2"
+     inkscape:current-layer="layer5"
      showborder="true"
      inkscape:showpageshadow="false"
-     inkscape:pagecheckerboard="false" />
+     inkscape:pagecheckerboard="false">
+    <sodipodi:guide
+       position="0,0"
+       orientation="0,93"
+       id="guide859"
+       inkscape:locked="false" />
+    <sodipodi:guide
+       position="93,0"
+       orientation="-18,0"
+       id="guide861"
+       inkscape:locked="false" />
+    <sodipodi:guide
+       position="93,18"
+       orientation="0,-93"
+       id="guide863"
+       inkscape:locked="false" />
+    <sodipodi:guide
+       position="0,18"
+       orientation="18,0"
+       id="guide865"
+       inkscape:locked="false" />
+  </sodipodi:namedview>
   <g
      inkscape:groupmode="layer"
      id="layer1"
@@ -124,7 +187,8 @@
   <g
      inkscape:groupmode="layer"
      id="layer2"
-     inkscape:label="Layer 2">
+     inkscape:label="original"
+     style="display:inline">
     <rect
        style="opacity:1;fill:#162d50;fill-opacity:1;fill-rule:evenodd;stroke:#3771c8;stroke-width:1.01883602;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
        id="rect834"
@@ -165,9 +229,546 @@
        y="29.394594" />
     <path
        style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.4326629;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
-       d="M 92.783668,18 V 0.21633123 H 0.21633165 V 0.43987423 18"
+       d="M 92.703177,-7.9985075 V -25.782176 H 0.13584091 v 0.223543 17.5601255"
        id="rect864"
        inkscape:connector-curvature="0"
        sodipodi:nodetypes="ccccc" />
   </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="complaint - bäh"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="display:inline;fill:#121212;fill-opacity:1;stroke:none;stroke-width:0.42704147;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect3597-9-2-4-3-1-9-7-0"
+       width="93"
+       height="18"
+       x="0"
+       y="2.2426255e-07"
+       inkscape:transform-center-x="18.520099"
+       inkscape:transform-center-y="-34.342165" />
+    <path
+       sodipodi:type="star"
+       style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path857"
+       sodipodi:sides="3"
+       sodipodi:cx="-5.1037555"
+       sodipodi:cy="-0.55539691"
+       sodipodi:r1="3.5577173"
+       sodipodi:r2="1.7765996"
+       sodipodi:arg1="0.52359878"
+       sodipodi:arg2="1.5707963"
+       inkscape:flatsided="false"
+       inkscape:rounded="0"
+       inkscape:randomized="0"
+       d="m -2.0226819,1.2234618 -3.0810735,-0.00226 -3.0810737,0.00226 1.5424932,-2.6671584 1.5385804,-2.6694175 1.5385804,2.6694174 z"
+       transform="rotate(90,-1.9406526,3.1641143)"
+       inkscape:transform-center-x="-0.88942932" />
+    <rect
+       style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34238577;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect867"
+       width="1"
+       height="18"
+       x="0"
+       y="0" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#rect867"
+       id="use896"
+       transform="translate(92)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#rect867"
+       id="use2322"
+       transform="matrix(0,1,-5.1666667,0,93.000001,-5.541891)"
+       width="100%"
+       height="100%" />
+    <rect
+       style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34238577;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect867-5"
+       width="1"
+       height="18"
+       x="-14.354728"
+       y="20.776518" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#path857"
+       inkscape:transform-center-x="0.88942934"
+       id="use2339"
+       transform="rotate(60,46.5,77.4603)"
+       width="100%"
+       height="100%" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="complaint 2"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-2-9);fill-opacity:1;stroke:none;stroke-width:0.42704147;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect3597-9-2-4-3-1-9-7-5"
+       width="93"
+       height="18"
+       x="0"
+       y="0"
+       inkscape:transform-center-x="18.520099"
+       inkscape:transform-center-y="-34.342165" />
+    <rect
+       style="display:inline;fill:url(#linearGradient2418);fill-opacity:1;stroke:none;stroke-width:0.10065464;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect3597-9-2-4-3-1-9-7-5-7"
+       width="93"
+       height="1"
+       x="1.0264901"
+       y="-8.8278141"
+       inkscape:transform-center-x="18.520099"
+       inkscape:transform-center-y="-1.9078981" />
+    <path
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.42800242;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="M 91.785999,18 V 0.21400113 H 1.2140011 V 0.43757342 18"
+       id="rect864-3"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+    <rect
+       y="32.357277"
+       x="4.0586481"
+       height="18"
+       width="1"
+       id="rect2829"
+       style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:0.53033006" />
+    <rect
+       y="0"
+       x="0"
+       height="18"
+       width="1"
+       id="rect2829-3"
+       style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.53033006" />
+    <rect
+       y="31.954823"
+       x="62.184319"
+       height="18"
+       width="1"
+       id="rect2829-7"
+       style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:0.53033006" />
+    <rect
+       transform="scale(-1,1)"
+       y="41.542149"
+       x="-114.10877"
+       height="1"
+       width="1"
+       id="use3218"
+       style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.12499999"
+       inkscape:tile-x0="105.13908"
+       inkscape:tile-y0="3.8824503" />
+    <rect
+       transform="scale(-1,1)"
+       y="55.067348"
+       x="-114.11398"
+       height="1"
+       width="1"
+       id="use3220"
+       style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.12499999"
+       inkscape:tile-x0="105.13908"
+       inkscape:tile-y0="3.8824503" />
+    <rect
+       transform="scale(-1,1)"
+       y="70.673347"
+       x="-114.11997"
+       height="1"
+       width="1"
+       id="use3222"
+       style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.12499999"
+       inkscape:tile-x0="105.13908"
+       inkscape:tile-y0="3.8824503" />
+    <rect
+       transform="scale(-1,1)"
+       y="88.360146"
+       x="-114.12678"
+       height="1"
+       width="1"
+       id="use3224"
+       style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.12499999"
+       inkscape:tile-x0="105.13908"
+       inkscape:tile-y0="3.8824503" />
+    <rect
+       transform="scale(-1,1)"
+       y="-5.516324"
+       x="-127.3362"
+       height="1"
+       width="1"
+       id="use3228"
+       style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.12499999"
+       inkscape:tile-x0="105.13908"
+       inkscape:tile-y0="3.8824503" />
+    <rect
+       transform="scale(-1,1)"
+       y="41.857418"
+       x="-121.74663"
+       height="1"
+       width="1"
+       id="use3240"
+       style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.12499999"
+       inkscape:tile-x0="105.13908"
+       inkscape:tile-y0="3.8824503" />
+    <rect
+       transform="scale(-1,1)"
+       y="57.158916"
+       x="-121.74812"
+       height="1"
+       width="1"
+       id="use3242"
+       style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.12499999"
+       inkscape:tile-x0="105.13908"
+       inkscape:tile-y0="3.8824503" />
+    <rect
+       transform="scale(-1,1)"
+       y="74.500618"
+       x="-121.74982"
+       height="1"
+       width="1"
+       id="use3244"
+       style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.12499999"
+       inkscape:tile-x0="105.13908"
+       inkscape:tile-y0="3.8824503" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#use3228"
+       xlink:href="#use3228"
+       transform="translate(1e-4,1.01)"
+       id="use3248"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#use3228"
+       xlink:href="#use3228"
+       transform="translate(4e-4,2.02)"
+       id="use3250"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#use3228"
+       xlink:href="#use3228"
+       transform="translate(9e-4,3.03)"
+       id="use3252"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#use3228"
+       xlink:href="#use3228"
+       transform="translate(0.0016,4.04)"
+       id="use3254"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#use3228"
+       xlink:href="#use3228"
+       transform="translate(0.0025,5.05)"
+       id="use3256"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#use3228"
+       xlink:href="#use3228"
+       transform="translate(0.0036,6.06)"
+       id="use3258"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#use3228"
+       xlink:href="#use3228"
+       transform="translate(0.0049,7.07)"
+       id="use3260"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#use3228"
+       xlink:href="#use3228"
+       transform="translate(0.0064,8.08)"
+       id="use3262"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#use3228"
+       xlink:href="#use3228"
+       transform="translate(0.0081,9.09)"
+       id="use3264"
+       width="100%"
+       height="100%" />
+    <g
+       id="g3371"
+       transform="translate(-16.577919,0.07592664)">
+      <use
+         inkscape:tile-y0="-0.075926643"
+         inkscape:tile-x0="108.57792"
+         inkscape:tile-h="1"
+         inkscape:tile-w="1"
+         inkscape:tile-cy="0.42407336"
+         inkscape:tile-cx="109.07792"
+         transform="translate(-17.758278,5.4403974)"
+         height="100%"
+         width="100%"
+         id="use3246"
+         xlink:href="#use3228"
+         inkscape:tiled-clone-of="#use3228"
+         y="0"
+         x="0" />
+      <use
+         id="use3322"
+         xlink:href="#use3246"
+         inkscape:tiled-clone-of="#use3246"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3324"
+         transform="translate(0,2)"
+         xlink:href="#use3246"
+         inkscape:tiled-clone-of="#use3246"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3326"
+         transform="translate(0,4)"
+         xlink:href="#use3246"
+         inkscape:tiled-clone-of="#use3246"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3328"
+         transform="translate(0,6)"
+         xlink:href="#use3246"
+         inkscape:tiled-clone-of="#use3246"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3330"
+         transform="translate(0,8)"
+         xlink:href="#use3246"
+         inkscape:tiled-clone-of="#use3246"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3332"
+         transform="translate(0,10)"
+         xlink:href="#use3246"
+         inkscape:tiled-clone-of="#use3246"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3334"
+         transform="translate(0,12)"
+         xlink:href="#use3246"
+         inkscape:tiled-clone-of="#use3246"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3336"
+         transform="translate(0,14)"
+         xlink:href="#use3246"
+         inkscape:tiled-clone-of="#use3246"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3338"
+         transform="translate(0,16)"
+         xlink:href="#use3246"
+         inkscape:tiled-clone-of="#use3246"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3340"
+         transform="translate(0,18)"
+         xlink:href="#use3246"
+         inkscape:tiled-clone-of="#use3246"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+    </g>
+    <g
+       id="g3371-7"
+       transform="translate(-108.57792,-0.92407336)">
+      <use
+         inkscape:tile-y0="-0.075926643"
+         inkscape:tile-x0="108.57792"
+         inkscape:tile-h="1"
+         inkscape:tile-w="1"
+         inkscape:tile-cy="0.42407336"
+         inkscape:tile-cx="109.07792"
+         transform="translate(-17.758278,5.4403974)"
+         height="100%"
+         width="100%"
+         id="use3246-4"
+         xlink:href="#use3228"
+         inkscape:tiled-clone-of="#use3228"
+         y="0"
+         x="0" />
+      <use
+         id="use3322-1"
+         xlink:href="#use3246-4"
+         inkscape:tiled-clone-of="#use3246-4"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3324-9"
+         transform="translate(0,2)"
+         xlink:href="#use3246-4"
+         inkscape:tiled-clone-of="#use3246-4"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3326-0"
+         transform="translate(0,4)"
+         xlink:href="#use3246-4"
+         inkscape:tiled-clone-of="#use3246-4"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3328-9"
+         transform="translate(0,6)"
+         xlink:href="#use3246-4"
+         inkscape:tiled-clone-of="#use3246-4"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3330-8"
+         transform="translate(0,8)"
+         xlink:href="#use3246-4"
+         inkscape:tiled-clone-of="#use3246-4"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3332-8"
+         transform="translate(0,10)"
+         xlink:href="#use3246-4"
+         inkscape:tiled-clone-of="#use3246-4"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3334-5"
+         transform="translate(0,12)"
+         xlink:href="#use3246-4"
+         inkscape:tiled-clone-of="#use3246-4"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3336-8"
+         transform="translate(0,14)"
+         xlink:href="#use3246-4"
+         inkscape:tiled-clone-of="#use3246-4"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3338-4"
+         transform="translate(0,16)"
+         xlink:href="#use3246-4"
+         inkscape:tiled-clone-of="#use3246-4"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+      <use
+         id="use3340-3"
+         transform="translate(0,18)"
+         xlink:href="#use3246-4"
+         inkscape:tiled-clone-of="#use3246-4"
+         y="0"
+         x="0"
+         width="100%"
+         height="100%" />
+    </g>
+    <rect
+       transform="scale(-1,1)"
+       y="25.757032"
+       x="-87.814484"
+       height="18"
+       width="1"
+       id="rect3613"
+       style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.53033006" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="complaint 3"
+     style="display:inline">
+    <rect
+       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34238577;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect867-5-7"
+       width="1"
+       height="18"
+       x="0"
+       y="0" />
+    <rect
+       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34238577;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect867-5-7-1"
+       width="1"
+       height="18"
+       x="92"
+       y="0" />
+    <rect
+       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.0512836;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect867-5-7-1-3"
+       width="1"
+       height="93"
+       x="7.4709644e-15"
+       y="-93"
+       transform="rotate(90)" />
+  </g>
 </svg>
diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/plugin_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/plugin_bg.png
index ec59e0de95ca5817236b82d6e94e9d760b097fd7..8d2ad50282bf714bde1f5ddcbc4f7110e7165501 100644
GIT binary patch
delta 121
zcmeBTdcZg#uPD~j#W5tJ_3f2F-UA9E&KLW9<n=x@u-KeoWxF3!V86rN@v=$nq!4*+
ztK@p){7E6AbDwJU@)amg=i5-y@SUmPC4)D6g+2o^H^S<GKl_f7hNaAP`R_Hv4?5*X
PFaUw4tDnm{r-UW|NBk|+

delta 164
zcmV;V09*gy0g3{UZhwbKL_t(oh3(g|4TDe+gJB<>B2lD4?2utth~csdE6}7$8dGEk
zyLkR4u%1r8^lCretlx#u;A2JC_d<P6_m*)yfyupLL`@JN-8+Us5dDAiJh}{%7mMUY
zE_sow<i(>2=F+8-7rErcBzY0b=g5J%bUA`)x<m4!MxbliFdeTi_mpAOvf&08VL`(B
Sf2x)M0000<MNUMnLSTZHolkiH

diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/resource1024.png b/cinelerra-5.1/plugins/theme_neophyte/data/resource1024.png
index 4a172b3c4c31c351da5c38ac6a3e1cc209421732..70127d0626291ad2d065072d63fea08174786fad 100644
GIT binary patch
delta 584
zcmX?XvD0G0wNO7#7srr_Id5)l>{W0VU^yt2#B06&9_y^qdAy>#HbguycFNlL#3lc>
zECU0>2lL(MxBdO|=g-e7P7t^6{{8#5|L^~=+r<LpR$R4@=LgaZ_tYmVvL|nzz{Afp
zIe<fLvH;iY%>~R;7@>?dCRE<!0_MxCA98M6KA+sk;m>sL=VV51Kjyi``zCK>bp=Xt
zGCiL&*#Ia*T?MX_=kxJQHs|o5vbngO?#6n48|}QMFY|wE_Hi@50|o*to({hCtnu6C
z?qGF1cuvJfKTcrsLkU?fW8=-c*O!B$XmX;k+vHc$+LIp$si6uxOkN<Zt$ptOKigPF
mpu#&}_8Wh$+{*-H?s(13%RO<8e|t?g$OunYKbLh*2~7a#)7|3$

literal 7235
zcmeAS@N?(olHy`uVBq!ia0y~yU;#2&7&zE~RK2WrGl*C0<Qc*N1T`Ef9Y8*3fk$L9
z0|Va?5N4dJ%_j{Mlq_+LC<)F_D=AMbN@XZ7FW1Y=%Pvk%EJ)SMFG`>N&PEETh#REH
zv9u&3zlgy<CoxSaXk98$SP>-bl3JWxlvz-cnV-jCWMF8aYXC%sRtkwJi3KI8DS8UU
zpM>WE6-$5=I~S!Uf>bJmWag$KDR=Xp#K*uO9pUNX7*a9k&8>}VCENvE4#qt!O7`Mv
zWc-(sp)0$zz`|kuDXGnG+b#Fk{oTb3H1pr}dAYwoKR>@eo}UrOz4!6+=g+@?zW?|4
zr4W$&AoPEYEs$oYm=7Wu7@0sM3kQf4Pymq*2R7$^zqh^|#Mb`=G6I{T29P*G37gwx
z@Bdb@166)dk_TykTG0Sv6V#3DD5#F}+wNBHzXx*Eo)aKrQC$vIgy|)m5>)gn#I+xC
zZtwm6S{CTC1Kl-1lEDF|-NZ?Z2H|KBlAMl4QYsutepLXcgwaB4wA?45j)T@SqgCf1
zYJH3rT4Xi<kW>9=5RL{Rs5&I68!?boC(!QabD;gIo!@_foZi3$?q4y1`l$>Y0w7Ys
z0Yo-15G7Hu?d_b;UxB?uh6k>8Ablk1#$w;RT<hmGdqLgEii!Ln1Icg{vat>6x6fI|
zzXzEV_XK1t1KECs82jMnw&HWwt$_wLi2nqcM`TDLI|?OiM}u%Q2uV&ygE$qA=D5*9
zi}dPbwA>%9Izgo%k?n`k<U(vn;mnGoK{y(Om^tp>w(R3(d<P5!SUeqk>sj+Iu+}~j
zV_~(PY_PY&kwBN=+?g})_JQX{VyM&9K6B>HJIGW9bvhT+bD)K>@$TQ?d8GnE-4u)c
vzrUBT0z<ms^7AuiYWCkh|5_EuJ7D|&PX5gDZ`GjLLIws;S3j3^P6<r_#)nVi

diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/resource128.png b/cinelerra-5.1/plugins/theme_neophyte/data/resource128.png
index fc26ee32ef3a6dfdd198df9d852f913ec94b2922..489d01f73b777042a8357fe3e8b490751b692f59 100644
GIT binary patch
delta 120
zcmV-;0EhpK1djxeZa<7kL_t(|obA;?aRfmS1Hm500Xhf^eIc09_+<?Js7wTUD5Ntp
z_j#V*A?JPH?`LM_-uvAS!;b#~Z0BIf&ylF334LZ}&N<sTSfZ0$0g{uj0SFv-X69~(
aV9y`^B8AZ78bE^p0000<MNUMnLSTZidNrZ|

delta 117
zcmV-*0E+*Q1dIfbZaRrcL_t(|obA;yk;G6CL&5QtxtV|Pxj6F%2V#QPjX;4)x}N9x
zhOB#L=6&Do94t8J{1@Q+j6l`jk*%W%-7_=Sb#3QhiIZ>vgOhgw7arU_Gjq<_&cTu&
X>w<=2+eK&w00000NkvXXu0mjfmJ&Fb

diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/resource256.png b/cinelerra-5.1/plugins/theme_neophyte/data/resource256.png
index 9f629c831e330bb61e8545f16f383dcb7cfb0c89..d0d21f8939b21071cdb94c68fc8c36d12dc4154f 100644
GIT binary patch
literal 1122
zcmeAS@N?(olHy`uVBq!ia0y~yU<5K5893O0R7}x|G$6%N?Bp530R%N1DIGvQXMsm#
zF#`kN5fEmas?8@26qGD+jVKAuPb(=;EJ|f4FE7{2%*!rLPAo{(%P&fw{mw=TsE8Y+
z$g#8}Bfp5jKPNFwDQI0PP*@Qp?2=lXT$EW*l9`{!U}Ruup=$s{hE@uRDTxIosVRC2
z#h--d0u@Vu6gwBCCW2Hdgk<KXA}M$Cp2Ww%z+CR>;uumf=k0YvL1se{=Y#Lh2wH16
zifOQ)UFoE#cTbNgR4ViAnSJkn8#|o(Z1X-lE$#hZJ6X0L`{NnsoMV*vU?t07;m+tV
zgPS2yjG;x7fuopF;S5uQ0V_kI9z#ncgTOKdg)^)T2HXsXL>O9jG6<vr6$9nP84l?%
za0D|5JY#a00aVPza43d>V>5$-&wv^RbjdLA#tl>B&DX5vGFu!Nx-kJyBfvB<gcB6p
l8<3=aW7f=CE0%&|;#(zqIX6ZXUk7GW22WQ%mvv4FO#n>$9_s)A

literal 1122
zcmeAS@N?(olHy`uVBq!ia0y~yU<5K5893O0R7}x|G$6%N?Bp530R%N1DIGvQXMsm#
zF#`kN5fEmas?8@26qGD+jVKAuPb(=;EJ|f4FE7{2%*!rLPAo{(%P&fw{mw=TsE8Y+
z$g#8}Bfp5jKPNFwDQI0PP*@Qp?2=lXT$EW*l9`{!U}Ruup=$s{hE@uRDTxIosVRC2
z#h--d0u@Vu6gwBCCW2Hdgk<KXA}M$Cp2Ww%z+CR>;uumf=k4{4yoVilSR79U<iC>t
zktVX2`TGO@vSmze?N7hjoR?F0Id5j={qJ9756oY?wT^kic8-Qc=U*~66!S2&R5B{~
zFgna&Y%tJgXwhWgFlG>V#@b-O%8<y$aA*&Mz%mAfGYk$h#2F5WFtkWAaC~NRn8DOw
zz|4>s$G{QHAdm)>=VnOcVmLIQh5=nZcpO81FnvFBrZjf>dxn2G@7FRc7zzQ8*RQ}N
pGjx*_y3cl}r(KHz#tq*OrlndFQf#<idjhj5gQu&X%Q~loCIIq!B~AbU

diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/resource32.png b/cinelerra-5.1/plugins/theme_neophyte/data/resource32.png
index 567a5c5242f160d0d7c0e82587b8f922ba4af889..ce7980da5762b24f69539935fc29793347987e69 100644
GIT binary patch
delta 132
zcmV-~0DJ%00@DJJ)_rJ6L_t(oh3(P16~G`2#Zd9-7>d~$DkYF2VFnf03%q-*1nl1X
zgK%SvRsrUm%>V!#fVKYt)><w=|9}pN1UeuR=zvI|1Iz?jTmG*C<m@>rKq=*NKqSxs
mkw6DT0v&L5f&^@B9e4rnK{I)DDv6T-0000<MNUMnLSTaR95qV-

delta 139
zcmV;60CfM;0@(tP)_-nEL_t(oh3(O?5x_7A1i?3`H~P<LM3DyBfi!O65@>*(zb7JI
zfj1;+&WSwF%mb(@1R&i7_TDT2UjPSm0vyl@a6l)(0b~NhKHnRXWX3qE>Hypw0j#xH
tfCMM_0r&zqpcCMLPJjbCL1tor4=-&xC)MEKr~m)}07*qoL<FuvV1o58H%kBj

diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/resource512.png b/cinelerra-5.1/plugins/theme_neophyte/data/resource512.png
index c29273e30ad35987b058fba934aefda746d678e1..4376bcdef65c577cd46341078e93301f45a40417 100644
GIT binary patch
literal 2481
zcmeAS@N?(olHy`uVBq!ia0y~yU;;9k7&zE~)R&4Yzkn1=v6E*A2N2Y7q;vrJoCO|{
z#S9F5M?jcysy3fAP*AeOHKHUqKdq!Zu_%?Hyu4g5GcUV1Ik6yBFTW^#_B$IXpdxON
zBFEB_jQk=7|D41$rJ!}GKw(9YuuE!ja#3bMNoIZ?gOP!ug{}b*8CoeMrX&`Wq^9U8
z6n_$)3sfutQtVumng~*<5R#djilp4ldlDZ51IIB>7srr_Id5-o>^)*2z;f`ZW2Wqa
z3#>5-HP4d;de?1Axs=1RB|Gg~?fv_V3_|ms|BU^AfB#~AMuxbrmVX%-9@GK@p=sUB
znR~y#EN5WQ-^9S+FoA)gL4lEh!4V|I0t}R$Oh5r{AcGTVp%4RufC>YHf(J;YHc()&
zX*uEFz#x#qh~@{7(~DSvo)Sa%1IV}GKu?WoL5=m%5F4Bc<|n5BLz512E`;URb--+S
z0+?yx85fpcp8yLz+G&Y3HqKsq`8@+e+@Q-s^BEWiB1GsD?xVJVD<j$_?m->MpM(_{
zSR!GSF{~H>RogL)z}gvD-GS?Gm>)pZ_6bp7Jw8~ptetstxjZAop4a@d&-LW-=F0$`
P&cNX5>gTe~DWM4fc>`#)

delta 196
zcmdleyk2<1HLoL{E{-7;bKc(G$a~m8faT!ygZHl3A4n6q80&HHT*!ff!Uyr+Yv(gE
z1YJ9G=Ce)werAS>llQ9Y;_aCjD&{jVG%PSRF7C@`U<gQ>tjKhj$-iN9AX7QhWCP|j
z=ASGalP@y$2?BMN#zJ&j9%o`;aGjjUQ8al0hZOUC2FA@3*qoVw9AhXpVd4~+?8q?*
m$kkQ=>b&>+bvXlr{x9a4%O<7#5eUm*00K`}KbLh*2~7YAVolco

diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/resource64.png b/cinelerra-5.1/plugins/theme_neophyte/data/resource64.png
index ecfc51e06e6801b19fded82c4896f396b87d6df7..b085759f528037b9ec3e5db4a9103ae0d44761fc 100644
GIT binary patch
delta 210
zcmZ3%yn=bcz4}=jd5<VC9Pv34chk1HHN@k;aKMf07X?q}1+Z;+_xsqktzzdt8+<>w
z?eAGehKl>&U!?l!Ff#=(Ik2%TV5#F@mI`DrXf*P0Fide^d%-xR;Vy%1gOGsK262W0
zwGGo51sa4dNGGrr%-wh3rEi1bv6s~{w^?@Rt>=(rVANpT%jjLjaE#@joXZ!4<_*#d
z*aMi#n7=T19ms2tbKtzedx2SlaW`WXgQ|jA0>i!e%nkhIVTY#2@vBc}00K`}KbLh*
G2~7a=s87xS

delta 210
zcmZ3%yn=bcz52-;1z8jY4zoDtf0>`7EzT%kBPe}h-GRjukKOyNc#rAFzV*M|Pp^8#
z|G;)V3-^P2xBo8AHDq8?;C#V*f!TwpjQI=0q=vf;whbx?<_`P{oHwuwcks@*%f4$n
z!!e1w_P4e%JS*ucIM>O@$Z*e_MS+dQL8w7OfWh-XUW1&2&<5!R>=Rhtu)SbZVcgAF
hg)STt`n`YKUxp~B^bLj)zrq-Rz|+;wWt~$(695$mP-FlA

diff --git a/cinelerra-5.1/plugins/theme_neophyte/data/title_bg.png b/cinelerra-5.1/plugins/theme_neophyte/data/title_bg.png
index c4dfa5199773ac3b384a9ccb6e93191ab8d02fd2..16d4cd0325592d69971beaf740228c985544a31b 100644
GIT binary patch
delta 121
zcmV-<0EYkF0>=W7)pA`)L_t(oh3(YA2>>w+#K1jBTdv-HIeA<U(Ic7)%p&|H+0j)i
zNvevz;~CxkkG{9D-{k0kl_WDm-|-Yn2RJ&w_X4nVfTaU09pLBy-wVLf0hSK1bbzA+
bd@q0lGz2sQHYf2)00000NkvXXu0mjfZih5)

delta 144
zcmX@kbeCzu)%s#j7srr@*0)y|3Nk1PIA6STCM$sB*ZK);lY+}tb66_5BoDr+zZNyC
zSgC4GaX>Q9o4t3V*C}$Ua!$GfqQBZM@}J1!`MocD!WsYa6TbQ1+D)D>^>@meG{MZ<
n!&m518s|z!6kems9@E#wX^);d?q^_N;AHT0^>bP0l+XkK|A9S;

diff --git a/cinelerra-5.1/plugins/theme_neophyte/neophyte.C b/cinelerra-5.1/plugins/theme_neophyte/neophyte.C
index 4bc9f521..ac64d8b7 100644
--- a/cinelerra-5.1/plugins/theme_neophyte/neophyte.C
+++ b/cinelerra-5.1/plugins/theme_neophyte/neophyte.C
@@ -144,7 +144,9 @@ void NEOPHYTETHEME::initialize()
 	resources->menu_item_text = WHITE; 
 
 	resources->menu_highlighted_fontcolor = CreamyWhiteBright;
-	resources->generic_button_margin = 20;     // [15] (Pref top right: ~17)
+	/* This indent is too global and the fullness ultimately depends
+	 * on the text. (Pref. top right, engl.: ~17) */
+	resources->generic_button_margin = 20;     // [15]
 	resources->pot_needle_color = CreamyWhite; // [resources->text_default] – marginal
 	resources->pot_offset = 1;                 // only the needle
 	resources->progress_text = resources->text_default;
@@ -224,6 +226,10 @@ void NEOPHYTETHEME::initialize()
 	clock_fg_color = ComicYellow;
 	// clock_bg_color = ALARM; // see vclock
 
+	// The line between the in and out markings
+	inout_highlight_color=BabyBlue;
+
+		
 	new_toggle(
 		"loadmode_new.png",
 		"loadmode_up.png",
diff --git a/cinelerra-5.1/po/de.po b/cinelerra-5.1/po/de.po
index 81db7e44..423b3a34 100644
--- a/cinelerra-5.1/po/de.po
+++ b/cinelerra-5.1/po/de.po
@@ -2053,43 +2053,43 @@ msgstr "Farbauswahl"
 
 #: cinelerra/colorpicker.C:175
 msgid "colorpicker#H:"
-msgstr "Farbauswahl#H:"
+msgstr "H:"
 
 #: cinelerra/colorpicker.C:176
 msgid "colorpicker#S:"
-msgstr "Farbauswahl#S:"
+msgstr "S:"
 
 #: cinelerra/colorpicker.C:177
 msgid "colorpicker_value#V:"
-msgstr "Farbauswahl_Wert#V:"
+msgstr "V:"
 
 #: cinelerra/colorpicker.C:178
 msgid "colorpicker#R:"
-msgstr "Farbauswahl#R:"
+msgstr "R:"
 
 #: cinelerra/colorpicker.C:179
 msgid "colorpicker#G:"
-msgstr "Farbauswahl#G:"
+msgstr "G:"
 
 #: cinelerra/colorpicker.C:180
 msgid "colorpicker#B:"
-msgstr "Farbauswahl#B:"
+msgstr "B:"
 
 #: cinelerra/colorpicker.C:181
 msgid "colorpicker#Y:"
-msgstr "Farbauswahl#Y:"
+msgstr "Y:"
 
 #: cinelerra/colorpicker.C:182
 msgid "colorpicker#U:"
-msgstr "Farbauswahl#U:"
+msgstr "U:"
 
 #: cinelerra/colorpicker.C:183
 msgid "colorpicker_Cr#V:"
-msgstr "Farbauswahl_Cr#V:"
+msgstr "V:"
 
 #: cinelerra/colorpicker.C:185
 msgid "colorpicker#A:"
-msgstr "Farbauswahl#A:"
+msgstr "A:"
 
 #: cinelerra/colorpicker.C:201
 msgid "Hue"
@@ -7669,7 +7669,7 @@ msgstr "Alt-r"
 
 #: cinelerra/proxy.C:87
 msgid "Original size"
-msgstr "Originalgröße"
+msgstr "– aus –"
 
 #: cinelerra/proxy.C:332
 msgid "Creating proxy files..."
-- 
2.26.2