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
fe37c549
Commit
fe37c549
authored
Apr 04, 2014
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Footprint Editor: minor cosmetic enhancement (which could avoid a report like bug #1302255)
parent
6beacd6e
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
625 additions
and
1 deletion
+625
-1
CMakeLists.txt
bitmaps_png/CMakeLists.txt
+1
-0
copy_library.cpp
bitmaps_png/cpp_26/copy_library.cpp
+119
-0
copy_library.svg
bitmaps_png/sources/copy_library.svg
+501
-0
bitmaps.h
include/bitmaps.h
+1
-0
moduleframe.cpp
pcbnew/moduleframe.cpp
+3
-1
No files found.
bitmaps_png/CMakeLists.txt
View file @
fe37c549
...
...
@@ -176,6 +176,7 @@ set( BMAPS_MID
copyblock
copycomponent
copy_button
copy_library
copper_layers_setup
cursor_shape
cursor
...
...
bitmaps_png/cpp_26/copy_library.cpp
0 → 100644
View file @
fe37c549
This diff is collapsed.
Click to expand it.
bitmaps_png/sources/copy_library.svg
0 → 100644
View file @
fe37c549
This diff is collapsed.
Click to expand it.
include/bitmaps.h
View file @
fe37c549
...
...
@@ -103,6 +103,7 @@ EXTERN_BITMAP( copper_layers_setup_xpm )
EXTERN_BITMAP
(
copyblock_xpm
)
EXTERN_BITMAP
(
copycomponent_xpm
)
EXTERN_BITMAP
(
copy_button_xpm
)
EXTERN_BITMAP
(
copy_library_xpm
)
EXTERN_BITMAP
(
create_cmp_file_xpm
)
EXTERN_BITMAP
(
cursor_shape_xpm
)
EXTERN_BITMAP
(
cursor_xpm
)
...
...
pcbnew/moduleframe.cpp
View file @
fe37c549
...
...
@@ -410,7 +410,9 @@ void FOOTPRINT_EDIT_FRAME::OnUpdateVerticalToolbar( wxUpdateUIEvent& aEvent )
void
FOOTPRINT_EDIT_FRAME
::
OnUpdateLibSelected
(
wxUpdateUIEvent
&
aEvent
)
{
aEvent
.
Enable
(
getLibPath
()
!=
wxEmptyString
);
bool
enable
=
getLibPath
()
!=
wxEmptyString
;
aEvent
.
Enable
(
enable
);
GetMenuBar
()
->
Enable
(
ID_MODEDIT_SAVE_LIBRARY_AS
,
enable
);
}
...
...
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