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
b1c9c542
Commit
b1c9c542
authored
Sep 20, 2012
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix incorrect titles in SVG export dialog
parent
9e096061
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
dialog_SVG_print_base.cpp
pcbnew/dialogs/dialog_SVG_print_base.cpp
+1
-1
dialog_SVG_print_base.fbp
pcbnew/dialogs/dialog_SVG_print_base.fbp
+2
-2
dialog_SVG_print_base.h
pcbnew/dialogs/dialog_SVG_print_base.h
+1
-1
No files found.
pcbnew/dialogs/dialog_SVG_print_base.cpp
View file @
b1c9c542
...
...
@@ -78,7 +78,7 @@ DIALOG_SVG_PRINT_base::DIALOG_SVG_PRINT_base( wxWindow* parent, wxWindowID id, c
wxString
m_rbFileOptChoices
[]
=
{
_
(
"One file per layer"
),
_
(
"All in one file"
)
};
int
m_rbFileOptNChoices
=
sizeof
(
m_rbFileOptChoices
)
/
sizeof
(
wxString
);
m_rbFileOpt
=
new
wxRadioBox
(
this
,
wxID_ANY
,
_
(
"
wxRadioBox
"
),
wxDefaultPosition
,
wxDefaultSize
,
m_rbFileOptNChoices
,
m_rbFileOptChoices
,
1
,
wxRA_SPECIFY_COLS
);
m_rbFileOpt
=
new
wxRadioBox
(
this
,
wxID_ANY
,
_
(
"
File option:
"
),
wxDefaultPosition
,
wxDefaultSize
,
m_rbFileOptNChoices
,
m_rbFileOptChoices
,
1
,
wxRA_SPECIFY_COLS
);
m_rbFileOpt
->
SetSelection
(
0
);
bButtonsSizer
->
Add
(
m_rbFileOpt
,
0
,
wxALL
,
5
);
...
...
pcbnew/dialogs/dialog_SVG_print_base.fbp
View file @
b1c9c542
...
...
@@ -45,7 +45,7 @@
<property
name=
"size"
>
507,420
</property>
<property
name=
"style"
>
wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER
</property>
<property
name=
"subclass"
></property>
<property
name=
"title"
>
Create
SVG file
</property>
<property
name=
"title"
>
Export
SVG file
</property>
<property
name=
"tooltip"
></property>
<property
name=
"window_extra_style"
></property>
<property
name=
"window_name"
></property>
...
...
@@ -728,7 +728,7 @@
<property
name=
"gripper"
>
0
</property>
<property
name=
"hidden"
>
0
</property>
<property
name=
"id"
>
wxID_ANY
</property>
<property
name=
"label"
>
wxRadioBox
</property>
<property
name=
"label"
>
File option:
</property>
<property
name=
"majorDimension"
>
1
</property>
<property
name=
"max_size"
></property>
<property
name=
"maximize_button"
>
0
</property>
...
...
pcbnew/dialogs/dialog_SVG_print_base.h
View file @
b1c9c542
...
...
@@ -64,7 +64,7 @@ class DIALOG_SVG_PRINT_base : public wxDialog
public
:
DIALOG_SVG_PRINT_base
(
wxWindow
*
parent
,
wxWindowID
id
=
wxID_ANY
,
const
wxString
&
title
=
_
(
"
Create
SVG file"
),
const
wxPoint
&
pos
=
wxDefaultPosition
,
const
wxSize
&
size
=
wxSize
(
507
,
420
),
long
style
=
wxDEFAULT_DIALOG_STYLE
|
wxRESIZE_BORDER
);
DIALOG_SVG_PRINT_base
(
wxWindow
*
parent
,
wxWindowID
id
=
wxID_ANY
,
const
wxString
&
title
=
_
(
"
Export
SVG file"
),
const
wxPoint
&
pos
=
wxDefaultPosition
,
const
wxSize
&
size
=
wxSize
(
507
,
420
),
long
style
=
wxDEFAULT_DIALOG_STYLE
|
wxRESIZE_BORDER
);
~
DIALOG_SVG_PRINT_base
();
};
...
...
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