Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
ab27f56c
Commit
ab27f56c
authored
Mar 14, 2014
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doc update
parent
bc707ced
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
14 deletions
+11
-14
GUI_Translation_HOWTO.odt
Documentation/GUI_Translation_HOWTO.odt
+0
-0
GUI_Translation_HOWTO.pdf
Documentation/GUI_Translation_HOWTO.pdf
+0
-0
wxWidgets_patch_notes.txt
Documentation/wxWidgets_patch_notes.txt
+9
-12
dialog_pad_properties.cpp
pcbnew/dialogs/dialog_pad_properties.cpp
+2
-2
No files found.
Documentation/GUI_Translation_HOWTO.odt
View file @
ab27f56c
No preview for this file type
Documentation/GUI_Translation_HOWTO.pdf
View file @
ab27f56c
No preview for this file type
Documentation/wxWidgets_patch_notes.txt
View file @
ab27f56c
...
...
@@ -5,8 +5,7 @@ Last Revised: 28-Feb-2010
Kicad needs wxWidgets, the multi platform G.U.I.
Known problems:
wxMSW:
*DO NOT* use wxMSW.2.8.1
in fact: use wxWidgets >= 2.9.3
use *only* wxWidgets >= 3.0
wxGTK
Use wxWidgets 2.8.10 or later
...
...
@@ -21,15 +20,6 @@ So use a very recent version (>= 2.8.10 (that also solve other bugs)
wxWidgets patch:
wxMSW, version 2.8.x
Some zoom values smaller than 3 to 5 create artifacts on screen, mainly values < 1.
(corresponding to draw scale factor > 1 )
See http://trac.wxwidgets.org/ticket/9554 (and 11669).
This is fixed in version 2.9.3
wxWidgets 2.9.1 (all platforms)
Has a problem when using the built in string to double conversion:
In countries using a comm instead of a point as floating number separator
...
...
@@ -41,7 +31,7 @@ Use a version >= 2.9.3
*************************************************************************************
wxGTK version: All
wxGTK version: All
before wxWidgets 3.0
*************************************************************************************
Patch for printing wide traces that were shown with missing rounded end caps.
Without this patch, printing boards and schematics under Linux, and perhaps OSX
...
...
@@ -57,3 +47,10 @@ Add after this line:
PsPrint( "1 setlinecap\n" );
PsPrint("%%EndSetup\n");
Known bug on Windows:
Postscript printers print tracks like tin line.
It happens only for PS drivers, and PDF printer.
Other drivers (PCL for instance) work fine,
so it is unlikely a bug inside Kicad/wxWidgets
pcbnew/dialogs/dialog_pad_properties.cpp
View file @
ab27f56c
...
...
@@ -149,8 +149,8 @@ DIALOG_PAD_PROPERTIES::DIALOG_PAD_PROPERTIES( PCB_BASE_FRAME* aParent, D_PAD* aP
{
m_canUpdate
=
false
;
m_parent
=
aParent
;
m_currentPad
=
aPad
;
// aPad can be NULL, if the dialog is calle
g
// from the mod
o
ule editor to set default pad characteristics
m_currentPad
=
aPad
;
// aPad can be NULL, if the dialog is calle
d
// from the module editor to set default pad characteristics
m_board
=
m_parent
->
GetBoard
();
m_dummyPad
=
new
D_PAD
(
(
MODULE
*
)
NULL
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment