From 13f67aa7ce1ee7fead0b49d8fb8a44cc13bbb84d Mon Sep 17 00:00:00 2001 From: Mike Williams Date: Wed, 28 Dec 2022 08:48:56 -0500 Subject: [PATCH] Schematic: remove unnecessary drag mirror/rotate control disabling The whole edit dialog is blocked while dragging if anything else is drag selected, and if nothing is drag selected the rotations/mirroring will be fine. Also, we already allow mirror and rotate while dragging, using the keyboard shortcuts and menu items, and it works fine. --- eeschema/dialogs/dialog_symbol_properties.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/eeschema/dialogs/dialog_symbol_properties.cpp b/eeschema/dialogs/dialog_symbol_properties.cpp index 624478d57e..c790c2460b 100644 --- a/eeschema/dialogs/dialog_symbol_properties.cpp +++ b/eeschema/dialogs/dialog_symbol_properties.cpp @@ -319,15 +319,6 @@ DIALOG_SYMBOL_PROPERTIES::DIALOG_SYMBOL_PROPERTIES( SCH_EDIT_FRAME* aParent, m_spiceFieldsButton->Hide(); #endif /* not KICAD_SPICE */ - // disable some options inside the edit dialog which can cause problems while dragging - if( m_symbol->IsDragging() ) - { - m_orientationLabel->Disable(); - m_orientationCtrl->Disable(); - m_mirrorLabel->Disable(); - m_mirrorCtrl->Disable(); - } - // Give a bit more room for combobox editors m_fieldsGrid->SetDefaultRowSize( m_fieldsGrid->GetDefaultRowSize() + 4 ); m_pinGrid->SetDefaultRowSize( m_pinGrid->GetDefaultRowSize() + 4 );