Merge lp:~xzcvczx/kicad/clarify-menu-fix into lp:kicad/product

Proposed by xzcvczx
Status: Merged
Merged at revision: 6250
Proposed branch: lp:~xzcvczx/kicad/clarify-menu-fix
Merge into: lp:kicad/product
Diff against target: 12 lines (+2/-0)
1 file modified
pcbnew/tools/selection_tool.cpp (+2/-0)
To merge this branch: bzr merge lp:~xzcvczx/kicad/clarify-menu-fix
Reviewer Review Type Date Requested Status
Maciej Suminski Pending
Review via email: mp+273691@code.launchpad.net
To post a comment you must log in.
Revision history for this message
xzcvczx (xzcvczx) wrote :

have been advised by nickoe that this doesn't occur on windows, and most likely doesn't occur on linux so may only be a OSX issue

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'pcbnew/tools/selection_tool.cpp'
2--- pcbnew/tools/selection_tool.cpp 2015-08-07 16:20:49 +0000
3+++ pcbnew/tools/selection_tool.cpp 2015-10-07 13:36:42 +0000
4@@ -812,6 +812,8 @@
5 // User has selected an item, so this one will be returned
6 if( id && ( *id > 0 ) )
7 current = ( *aCollector )[*id - 1];
8+ else
9+ current = NULL;
10
11 break;
12 }