Skip to content

Commit

Permalink
dirty fix for the resize dialog (#5042)
Browse files Browse the repository at this point in the history
  • Loading branch information
RensDofferhoff authored and JorisGoosen committed Jun 27, 2023
1 parent 29bf3e6 commit 2f63b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Desktop/components/JASP/Widgets/ResizeDataDialog.qml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ Popup
id: resizeButton
activeFocusOnTab: true
text: qsTr("Resize")
onClicked: { dataSetModel.resizeData(rows.value, cols.value); popupResizeData.close(); }
onClicked: { forceActiveFocus(); dataSetModel.resizeData(rows.value, cols.value); popupResizeData.close(); }
toolTip: qsTr("Resize data to set values")

KeyNavigation.tab: closeButtonCross
Expand Down

0 comments on commit 2f63b78

Please sign in to comment.