Re: [Kicad-developers] [PATCH] make pagelayout_default.kicad_wks match defaultPageLayout

2016-09-17 Thread Wayne Stambaugh
Your patch has been pushed to master.  Thanks.

On 9/8/2016 3:02 PM, Werner Almesberger wrote:
> The pagelayout_default.kicad_wks template differs slightly from
> common/page_layout/page_layout_default_description.cpp:defaultPageLayout
> 
> Not sure if this is intentional or a bug. In any case, here is a
> patch that changes pagelayout_default.kicad_wks to match
> defaultPageLayout.
> 
> This patch is based on the previous one that added missing
> parentheses.
> 
> - Werner
> 
> 
> 
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp
> 


___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


[Kicad-developers] [PATCH] make pagelayout_default.kicad_wks match defaultPageLayout

2016-09-08 Thread Werner Almesberger
The pagelayout_default.kicad_wks template differs slightly from
common/page_layout/page_layout_default_description.cpp:defaultPageLayout

Not sure if this is intentional or a bug. In any case, here is a
patch that changes pagelayout_default.kicad_wks to match
defaultPageLayout.

This patch is based on the previous one that added missing
parentheses.

- Werner
commit 3e0c715315ea46881d5be7a72c6daafd41360b52
Author: Werner Almesberger 
Date:   Thu Sep 8 15:44:41 2016 -0300

template/pagelayout_default.kicad_wks: synchronize with defaultPageLayout

... from common/page_layout/page_layout_default_description.cpp

diff --git a/template/pagelayout_default.kicad_wks b/template/pagelayout_default.kicad_wks
index a839593..8984ede 100644
--- a/template/pagelayout_default.kicad_wks
+++ b/template/pagelayout_default.kicad_wks
@@ -1,5 +1,6 @@
 ( page_layout
-( setup (textsize 1.5 1.5) (linewidth 0.15) (textlinewidth 0.15) )
+( setup (textsize 1.5 1.5) (linewidth 0.15) (textlinewidth 0.15)
+  (left_margin 10) (right_margin 10) (top_margin 10) (bottom_margin 10) )
 ( rect (comment "rect around the title block") (linewidth 0.15) (start 110 34) (end 2 2) )
 ( rect (start 0 0 ltcorner) (end 0 0 rbcorner) (repeat 2) (incrx 2) (incry 2) )
 ( line (start 50 2 ltcorner) (end 50 0 ltcorner) (repeat 30) (incrx 50) )
@@ -20,7 +21,7 @@
 ( tbtext "Size: %Z" (comment "Paper format name")(pos 109 6.9) )
 ( tbtext "Id: %S/%N" (comment "Sheet id")(pos 24 4.1) )
 ( line (start 110 12.5) (end 2 12.5) )
-( tbtext "Title: %T" (pos 109 10.7)(font bold (size 2 2)) )
+( tbtext "Title: %T" (pos 109 10.7)(font bold italic (size 2 2)) )
 ( tbtext "File: %F" (pos 109 14.3) )
 ( line (start 110 18.5) (end 2 18.5) )
 ( tbtext "Sheet: %P" (pos 109 17) )
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp