Initial support of drag and drop to move files and folders around from the file tree view (SpartanJ/ecode#71).

This commit is contained in:
Martín Lucas Golini
2025-09-07 02:06:53 -03:00
parent 966e475b4c
commit 873274e33c
15 changed files with 269 additions and 33 deletions

View File

@@ -65,7 +65,7 @@ UIWidget* UIBreakpointsTableView::createCell( UIWidget* rowWidget, const ModelIn
if ( index.column() == BreakpointsModel::Enabled ) {
UIBreakpointsTableCell* widget = UIBreakpointsTableCell::New(
mTag + "::cell", (const BreakpointsModel*)getModel(), index );
widget->getTextBox()->setEnabled( true );
widget->getTextView()->setEnabled( true );
widget->setDontAutoHideEmptyTextBox( true );
return setupCell( widget, rowWidget, index );
} else if ( index.column() == BreakpointsModel::Remove ) {