Browse Source

Fix issue with picker tool activation.

pull/15/head
Jeff Young 6 years ago
parent
commit
6623ab91a8
  1. 2
      eeschema/tools/ee_picker_tool.cpp
  2. 2
      pagelayout_editor/tools/pl_picker_tool.cpp
  3. 2
      pcbnew/tools/pcbnew_picker_tool.cpp

2
eeschema/tools/ee_picker_tool.cpp

@ -27,7 +27,7 @@
#include <tool/tool_manager.h>
#include <sch_base_frame.h>
TOOL_ACTION EE_ACTIONS::pickerTool( "eeschema.InteractivePicker.activate",
TOOL_ACTION EE_ACTIONS::pickerTool( "eeschema.InteractivePicker",
AS_GLOBAL, 0, "", "", "", NULL, AF_ACTIVATE );

2
pagelayout_editor/tools/pl_picker_tool.cpp

@ -28,7 +28,7 @@
#include <view/view_controls.h>
#include <pl_editor_frame.h>
TOOL_ACTION PL_ACTIONS::pickerTool( "plEditor.InteractivePicker.activate",
TOOL_ACTION PL_ACTIONS::pickerTool( "plEditor.InteractivePicker",
AS_GLOBAL, 0, "", "", "", NULL, AF_ACTIVATE );

2
pcbnew/tools/pcbnew_picker_tool.cpp

@ -30,7 +30,7 @@
#include "tool_event_utils.h"
#include "selection_tool.h"
TOOL_ACTION PCB_ACTIONS::pickerTool( "pcbnew.InteractivePicker.activate",
TOOL_ACTION PCB_ACTIONS::pickerTool( "pcbnew.InteractivePicker",
AS_GLOBAL, 0, "", "", "", nullptr, AF_ACTIVATE );

Loading…
Cancel
Save