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
7da13137
Commit
7da13137
authored
Feb 18, 2014
by
Marco Serantoni
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MacOSX] Fix for bugs #1258081 and #1267772
parent
fd2afec6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
cvframe.cpp
cvpcb/cvframe.cpp
+4
-0
edit.cpp
pcbnew/edit.cpp
+6
-0
No files found.
cvpcb/cvframe.cpp
View file @
7da13137
...
...
@@ -493,6 +493,10 @@ void CVPCB_MAINFRAME::LoadNetList( wxCommandEvent& event )
wxGetApp
().
GetLibraryPathList
().
Insert
(
newFileName
.
GetPath
(),
0
);
m_NetlistFileName
=
newFileName
;
ReadNetListAndLinkFiles
();
// OSX need it since some objects are "rebuild" just make aware AUI
// Fixes #1258081
m_auimgr
.
Update
();
}
...
...
pcbnew/edit.cpp
View file @
7da13137
...
...
@@ -1074,7 +1074,13 @@ void PCB_EDIT_FRAME::Process_Special_Functions( wxCommandEvent& event )
break
;
case
ID_POPUP_PCB_EDIT_DRAWING
:
#ifndef USE_WX_OVERLAY
InstallGraphicItemPropertiesDialog
(
(
DRAWSEGMENT
*
)
GetCurItem
(),
&
dc
);
#else
// #1267772 - Draw into dialog converted in refresh request
InstallGraphicItemPropertiesDialog
(
(
DRAWSEGMENT
*
)
GetCurItem
(),
NULL
);
m_canvas
->
Refresh
();
#endif
m_canvas
->
MoveCursorToCrossHair
();
break
;
...
...
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