version 2.22.0

blockview small code clean
add PIValueTree to BLockItem, BlockItemPin and BlockBusItem
add QAD::CursorOverrider::restore()
fix QCodeEdit escape key while block selection
This commit is contained in:
2024-01-14 11:45:28 +03:00
parent e2a91a4fbd
commit c3dcf36a20
10 changed files with 135 additions and 48 deletions

View File

@@ -608,8 +608,15 @@ bool QCodeEdit::codeKeyEvent(QKeyEvent * ke) {
hideHelp();
if (completer->isVisible()) {
completer->hide();
} else {
return true;
}
if (hasBlockSelection()) {
cancelBlockSelection();
return true;
}
if (ui->widgetSearch->isVisible()) {
hideSearch();
return true;
}
break;
case Qt::Key_Up: