Skip to content

Commit

Permalink
More reasonable instructions (#5179)
Browse files Browse the repository at this point in the history
  • Loading branch information
shun2wang authored and JorisGoosen committed Aug 30, 2023
1 parent a7c821d commit f83112b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Desktop/components/JASP/Widgets/DataTableView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ FocusScope
if (!header)
menuModel.push({ text: qsTr("Select row"), func: function() { dataTableView.view.rowSelect( rowIndex) }, icon: "menu-row-select" })
menuModel.push(
{ text: qsTr("Insert row before"), func: function() { dataTableView.view.rowInsertBefore( rowIndex) }, icon: "menu-row-insert-before" },
{ text: qsTr("Insert row after"), func: function() { dataTableView.view.rowInsertAfter( rowIndex) }, icon: "menu-row-insert-after" },
{ text: qsTr("Insert row above"), func: function() { dataTableView.view.rowInsertBefore( rowIndex) }, icon: "menu-row-insert-before" },
{ text: qsTr("Insert row below"), func: function() { dataTableView.view.rowInsertAfter( rowIndex) }, icon: "menu-row-insert-after" },
{ text: qsTr("Delete row"), func: function() { dataTableView.view.rowsDelete(); }, icon: "menu-row-remove" })
}

Expand Down

0 comments on commit f83112b

Please sign in to comment.