From aa046345eb66fe904b0976b6cd261dc63583a087 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Thu, 7 Dec 2023 13:15:11 +0000 Subject: [PATCH] Add missing case to Selectable(). Fixes https://gitlab.com/kicad/code/kicad/-/issues/16283 --- pcbnew/tools/pcb_selection_tool.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pcbnew/tools/pcb_selection_tool.cpp b/pcbnew/tools/pcb_selection_tool.cpp index bcf954ff26..b14af2fbd7 100644 --- a/pcbnew/tools/pcb_selection_tool.cpp +++ b/pcbnew/tools/pcb_selection_tool.cpp @@ -2752,6 +2752,7 @@ bool PCB_SELECTION_TOOL::Selectable( const BOARD_ITEM* aItem, bool checkVisibili case PCB_SHAPE_T: case PCB_TEXTBOX_T: + case PCB_REFERENCE_IMAGE_T: if( m_isFootprintEditor ) { if( !view()->IsLayerVisible( aItem->GetLayer() ) )