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
13324c06
Commit
13324c06
authored
Oct 17, 2011
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace icon_cvpcb.svg file (broken?)
Gerbview: very minor fix
parent
021a075f
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
299 additions
and
384 deletions
+299
-384
icon_cvpcb_small.cpp
bitmaps_png/cpp_26/icon_cvpcb_small.cpp
+84
-72
icon_cvpcb.cpp
bitmaps_png/cpp_48/icon_cvpcb.cpp
+185
-241
icon_cvpcb.ico
bitmaps_png/icons/icon_cvpcb.ico
+0
-0
icon_cvpcb.svg
bitmaps_png/sources/icon_cvpcb.svg
+13
-66
icon_cvpcb_small.svg
bitmaps_png/sources/icon_cvpcb_small.svg
+12
-4
menubar.cpp
gerbview/menubar.cpp
+2
-1
options.cpp
gerbview/options.cpp
+3
-0
No files found.
bitmaps_png/cpp_26/icon_cvpcb_small.cpp
View file @
13324c06
This diff is collapsed.
Click to expand it.
bitmaps_png/cpp_48/icon_cvpcb.cpp
View file @
13324c06
This diff is collapsed.
Click to expand it.
bitmaps_png/icons/icon_cvpcb.ico
View replaced file @
021a075f
View file @
13324c06
3.19 KB
|
W:
|
H:
3.19 KB
|
W:
|
H:
2-up
Swipe
Onion skin
bitmaps_png/sources/icon_cvpcb.svg
View file @
13324c06
This diff is collapsed.
Click to expand it.
bitmaps_png/sources/icon_cvpcb_small.svg
View file @
13324c06
...
...
@@ -12,7 +12,7 @@
width=
"26"
version=
"1.1"
id=
"svg2"
inkscape:version=
"0.4
7 r22583
"
inkscape:version=
"0.4
8.1
"
sodipodi:docname=
"icon_cvpcb_small.svg"
>
<metadata
id=
"metadata107"
>
...
...
@@ -36,7 +36,7 @@
inkscape:pageopacity=
"0"
inkscape:pageshadow=
"2"
inkscape:window-width=
"1280"
inkscape:window-height=
"9
49
"
inkscape:window-height=
"9
68
"
id=
"namedview105"
showgrid=
"true"
inkscape:snap-grids=
"false"
...
...
@@ -44,8 +44,8 @@
inkscape:zoom=
"13.906434"
inkscape:cx=
"10.431619"
inkscape:cy=
"4.4129107"
inkscape:window-x=
"
0
"
inkscape:window-y=
"
25
"
inkscape:window-x=
"
-4
"
inkscape:window-y=
"
-4
"
inkscape:window-maximized=
"1"
inkscape:current-layer=
"svg2"
inkscape:showpageshadow=
"false"
...
...
@@ -119,6 +119,14 @@
id=
"stop21"
/>
</radialGradient>
</defs>
<rect
style=
"fill:#f2f2f2;fill-opacity:1;stroke:none"
id=
"rect3018"
width=
"22.076113"
height=
"22.219931"
x=
"2.0853658"
y=
"1.9823402"
ry=
"2.245373"
/>
<rect
style=
"opacity:0.80487819999999999;fill:none;stroke:#f4972b;stroke-width:0.96729129999999997;stroke-opacity:0.98431373;fill-opacity:0.95294118000000005"
id=
"rect2962"
...
...
gerbview/menubar.cpp
View file @
13324c06
...
...
@@ -130,7 +130,8 @@ void GERBVIEW_FRAME::ReCreateMenuBar( void )
AddMenuItem
(
configMenu
,
ID_MENU_GERBVIEW_SHOW_HIDE_LAYERS_MANAGER_DIALOG
,
_
(
"Hide &Layers Manager"
),
_
(
"Show/hide the layers manager toolbar"
),
m_show_layer_manager_tools
?
_
(
"Hide &Layers Manager"
)
:
_
(
"Show &Layers Manager"
),
KiBitmap
(
layers_manager_xpm
)
);
// Options (Preferences on WXMAC)
...
...
gerbview/options.cpp
View file @
13324c06
...
...
@@ -78,6 +78,9 @@ void GERBVIEW_FRAME::OnSelectOptionToolbar( wxCommandEvent& event )
m_show_layer_manager_tools
=
state
;
m_auimgr
.
GetPane
(
wxT
(
"m_LayersManagerToolBar"
)
).
Show
(
m_show_layer_manager_tools
);
m_auimgr
.
Update
();
GetMenuBar
()
->
SetLabel
(
ID_MENU_GERBVIEW_SHOW_HIDE_LAYERS_MANAGER_DIALOG
,
m_show_layer_manager_tools
?
_
(
"Hide &Layers Manager"
)
:
_
(
"Show &Layers Manager"
));
break
;
default
:
...
...
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