Commit 6da86c12 authored by Dick Hollenbeck's avatar Dick Hollenbeck

KIWAY::player_destroy_handler() skips on the wxWindowDestroyEvent, just in case

parent 9ecb1099
......@@ -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.
}
......
......@@ -37,7 +37,6 @@
#include <typeinfo>
#include <macros.h>
#include <fctsys.h>
#include <wx/dynlib.h>
#include <wx/filename.h>
#include <wx/stdpaths.h>
#include <wx/snglinst.h>
......
......@@ -114,6 +114,10 @@ detect_pretty_repos()
| sed -r 's:.+ "KiCad/(.+)",:\1:'`
#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
detect_pretty_repos
# 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"
done
echo
echo "and the special 'kicad-library' which holds 3D stuff and schematic parts"
exit
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment