diff --git a/include/eda_item.h b/include/eda_item.h index 7d710caae0..60c707068b 100644 --- a/include/eda_item.h +++ b/include/eda_item.h @@ -153,7 +153,7 @@ public: void ClearTempFlags() { - ClearFlags( CANDIDATE | SELECTED_BY_DRAG | IS_LINKED | SKIP_STRUCT | DO_NOT_DRAW ); + ClearFlags( CANDIDATE | SELECTED_BY_DRAG | IS_LINKED | SKIP_STRUCT ); } void ClearEditFlags() diff --git a/include/eda_item_flags.h b/include/eda_item_flags.h index 8be4383d2c..2db1fcf2bc 100644 --- a/include/eda_item_flags.h +++ b/include/eda_item_flags.h @@ -50,7 +50,7 @@ #define STRUCT_DELETED (1 << 13) ///< flag indication structures to be erased #define CANDIDATE (1 << 14) ///< flag indicating that the structure is connected #define SKIP_STRUCT (1 << 15) ///< flag indicating that the structure should be ignored -#define DO_NOT_DRAW (1 << 16) ///< Used to disable draw function + #define IS_PASTED (1 << 17) ///< Modifier on IS_NEW which indicates it came from clipboard #define IS_SHOWN_AS_BITMAP (1 << 18) #define COURTYARD_CONFLICT (1 << 19) ///< temporary set when moving footprints