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:
parent
a055916f92
commit
5c600e992a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue