Don't allow SELECTED flag to make us think item is already edited.

Fixes: lp:1793289
* https://bugs.launchpad.net/kicad/+bug/1793289
This commit is contained in:
Jeff Young 2018-09-19 19:36:47 +01:00
parent a055916f92
commit 5c600e992a
1 changed files with 2 additions and 1 deletions

View File

@ -248,7 +248,8 @@ bool DIALOG_PCB_TEXT_PROPERTIES::TransferDataFromWindow()
// If no other command in progress, prepare undo command
// (for a command in progress, will be made later, at the completion of command)
bool pushCommit = ( m_SelectedPCBText->GetFlags() == 0 );
int mask = EDA_ITEM_ALL_FLAGS - ( SELECTED | HIGHLIGHTED | BRIGHTENED );
bool pushCommit = ( m_SelectedPCBText->GetFlags() & mask ) == 0;
/* set flag in edit to force undo/redo/abort proper operation,
* and avoid new calls to SaveCopyInUndoList for the same text