Flags: remove unused DO_NOT_DRAW
This commit is contained in:
parent
68fd0271c2
commit
600f2c7ea0
|
@ -153,7 +153,7 @@ public:
|
||||||
|
|
||||||
void ClearTempFlags()
|
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()
|
void ClearEditFlags()
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
#define STRUCT_DELETED (1 << 13) ///< flag indication structures to be erased
|
#define STRUCT_DELETED (1 << 13) ///< flag indication structures to be erased
|
||||||
#define CANDIDATE (1 << 14) ///< flag indicating that the structure is connected
|
#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 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_PASTED (1 << 17) ///< Modifier on IS_NEW which indicates it came from clipboard
|
||||||
#define IS_SHOWN_AS_BITMAP (1 << 18)
|
#define IS_SHOWN_AS_BITMAP (1 << 18)
|
||||||
#define COURTYARD_CONFLICT (1 << 19) ///< temporary set when moving footprints
|
#define COURTYARD_CONFLICT (1 << 19) ///< temporary set when moving footprints
|
||||||
|
|
Loading…
Reference in New Issue