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
eee97387
Commit
eee97387
authored
Oct 13, 2012
by
marco.
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OSX: Corrected issue with Menus, workaround/fix for an issue with Mountain Lion
parent
fc9c8cc0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
edaappl.cpp
common/edaappl.cpp
+4
-1
eeschema_id.h
eeschema/eeschema_id.h
+2
-2
No files found.
common/edaappl.cpp
View file @
eee97387
...
...
@@ -656,7 +656,10 @@ void EDA_APP::GetSettings( bool aReopenLastUsedDirectory )
}
int
draw_bg_color
;
m_settings
->
Read
(
wxT
(
"BgColor"
),
&
draw_bg_color
);
// FIXME OSX Mountain Lion (10.8)
// Seems that Read doesn't found anything and ColorFromInt Asserts - I'm unable to reproduce on 10.7
// In general terms i think is better have a failsafe BLACK default than an uninit variable
m_settings
->
Read
(
wxT
(
"BgColor"
),
&
draw_bg_color
,
BLACK
);
g_DrawBgColor
=
ColorFromInt
(
draw_bg_color
);
// Load per-user search paths from settings file
...
...
eeschema/eeschema_id.h
View file @
eee97387
...
...
@@ -51,12 +51,12 @@
enum
id_eeschema_frm
{
ID_UPDATE_ONE_SHEET
,
ID_UPDATE_ONE_SHEET
=
ID_END_LIST
,
ID_SAVE_ONE_SHEET_UNDER_NEW_NAME
,
ID_LOAD_ONE_SHEET
,
/* Schematic editor horizontal toolbar IDs */
ID_HIERARCHY
=
ID_END_LIST
,
ID_HIERARCHY
,
ID_TO_LIBVIEW
,
ID_GET_ANNOTATE
,
ID_GET_ERC
,
...
...
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