From c6444b7d05508ad591b5b6250db012715ad715f0 Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Thu, 7 Feb 2013 12:56:41 -0500 Subject: [PATCH] Improve zone context menu descriptions, fixes lp:1116483 --- pcbnew/class_zone.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pcbnew/class_zone.cpp b/pcbnew/class_zone.cpp index 5f08b747d2..5421d05894 100644 --- a/pcbnew/class_zone.cpp +++ b/pcbnew/class_zone.cpp @@ -939,6 +939,9 @@ wxString ZONE_CONTAINER::GetSelectMenuText() const if( ncont ) text << wxT( " " ) << _( "(Cutout)" ); + if( GetIsKeepout() ) + text << wxT( " " ) << _( "(Keepout)" ); + text << wxT( " " ); text << wxString::Format( wxT( "(%08lX)" ), m_TimeStamp );