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
6da86c12
Commit
6da86c12
authored
Jul 17, 2014
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
KIWAY::player_destroy_handler() skips on the wxWindowDestroyEvent, just in case
parent
9ecb1099
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
+10
-3
kiway.cpp
common/kiway.cpp
+1
-1
single_top.cpp
common/single_top.cpp
+0
-1
library-repos-install.sh
scripts/library-repos-install.sh
+9
-1
No files found.
common/kiway.cpp
View file @
6da86c12
...
@@ -74,7 +74,7 @@ void KIWAY::player_destroy_handler( wxWindowDestroyEvent& event )
...
@@ -74,7 +74,7 @@ void KIWAY::player_destroy_handler( wxWindowDestroyEvent& event )
}
}
}
}
// event.Skip();
skip to who, the wxApp? I'm the top window.
event
.
Skip
();
//
skip to who, the wxApp? I'm the top window.
}
}
...
...
common/single_top.cpp
View file @
6da86c12
...
@@ -37,7 +37,6 @@
...
@@ -37,7 +37,6 @@
#include <typeinfo>
#include <typeinfo>
#include <macros.h>
#include <macros.h>
#include <fctsys.h>
#include <fctsys.h>
#include <wx/dynlib.h>
#include <wx/filename.h>
#include <wx/filename.h>
#include <wx/stdpaths.h>
#include <wx/stdpaths.h>
#include <wx/snglinst.h>
#include <wx/snglinst.h>
...
...
scripts/library-repos-install.sh
View file @
6da86c12
...
@@ -114,6 +114,10 @@ detect_pretty_repos()
...
@@ -114,6 +114,10 @@ detect_pretty_repos()
|
sed
-r
's:.+ "KiCad/(.+)",:\1:'
`
|
sed
-r
's:.+ "KiCad/(.+)",:\1:'
`
#echo "PRETTY_REPOS:$PRETTY_REPOS"
#echo "PRETTY_REPOS:$PRETTY_REPOS"
PRETTY_REPOS
=
`
echo
$PRETTY_REPOS
|
tr
" "
"
\n
"
|
sort
`
#echo "PRETTY_REPOS sorted:$PRETTY_REPOS"
}
}
...
@@ -226,9 +230,13 @@ if [ $# -eq 1 -a "$1" == "--list-libraries" ]; then
...
@@ -226,9 +230,13 @@ if [ $# -eq 1 -a "$1" == "--list-libraries" ]; then
detect_pretty_repos
detect_pretty_repos
# add the "schematic parts & 3D model" kicad-library to total
# add the "schematic parts & 3D model" kicad-library to total
for
repo
in
kicad-library
$PRETTY_REPOS
;
do
for
repo
in
$PRETTY_REPOS
;
do
echo
"
$repo
"
echo
"
$repo
"
done
done
echo
echo
"and the special 'kicad-library' which holds 3D stuff and schematic parts"
exit
exit
fi
fi
...
...
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