Skip to content

Commit

Permalink
Fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
TatuJLund committed Jul 3, 2024
1 parent 5116a4f commit fadabed
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -298,13 +298,14 @@ public void clearSelection() {
}

/**
* Selects the specified row in the grid.
* Selects the specified row in the grid. And open editor for it.
*
* @param row
* the row to be selected
*/
public void selectRow(Product row) {
grid.getSelectionModel().select(row);
editProduct(row);
}

/**
Expand Down

0 comments on commit fadabed

Please sign in to comment.