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
190461f8
Commit
190461f8
authored
May 09, 2014
by
unknown
Committed by
jean-pierre charras
May 09, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OSX: fix incorrect path to launch pl_editor.
fix also a bug in python script round_value_robin.py.
parent
8c2da5f5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
3 deletions
+2
-3
viewlib_frame.h
eeschema/viewlib_frame.h
+0
-1
common.h
include/common.h
+1
-1
round_value_robin.py
scripts/bom-in-python/round_value_robin.py
+1
-1
No files found.
eeschema/viewlib_frame.h
View file @
190461f8
...
@@ -36,7 +36,6 @@
...
@@ -36,7 +36,6 @@
#include <sch_base_frame.h>
#include <sch_base_frame.h>
#include <class_sch_screen.h>
#include <class_sch_screen.h>
class
wxSashLayoutWindow
;
class
wxListBox
;
class
wxListBox
;
class
CMP_LIBRARY
;
class
CMP_LIBRARY
;
...
...
include/common.h
View file @
190461f8
...
@@ -102,7 +102,7 @@ enum pseudokeys {
...
@@ -102,7 +102,7 @@ enum pseudokeys {
#define GERBVIEW_EXE wxT( "gerbview.app/Contents/MacOS/gerbview" )
#define GERBVIEW_EXE wxT( "gerbview.app/Contents/MacOS/gerbview" )
#define BITMAPCONVERTER_EXE wxT( "bitmap2component.app/Contents/MacOS/bitmap2component" )
#define BITMAPCONVERTER_EXE wxT( "bitmap2component.app/Contents/MacOS/bitmap2component" )
#define PCB_CALCULATOR_EXE wxT( "pcb_calculator.app/Contents/MacOS/pcb_calculator" )
#define PCB_CALCULATOR_EXE wxT( "pcb_calculator.app/Contents/MacOS/pcb_calculator" )
#define PL_EDITOR_EXE
wxT( "pcb_calcula
tor.app/Contents/MacOS/pl_editor" )
#define PL_EDITOR_EXE
wxT( "pl_edi
tor.app/Contents/MacOS/pl_editor" )
# endif
# endif
#endif
#endif
...
...
scripts/bom-in-python/round_value_robin.py
View file @
190461f8
...
@@ -30,7 +30,7 @@ def checkvalue(self):
...
@@ -30,7 +30,7 @@ def checkvalue(self):
if
v
.
isdigit
():
if
v
.
isdigit
():
i
=
int
(
v
)
i
=
int
(
v
)
if
(
i
>
1000000
):
if
(
i
>
1000000
):
i
=
i
/
100000
i
=
i
/
100000
0
v
=
str
(
i
)
+
"M"
v
=
str
(
i
)
+
"M"
if
(
i
>
1000
):
if
(
i
>
1000
):
i
=
i
/
1000
i
=
i
/
1000
...
...
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