Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -322,13 +322,15 @@ Rectangle {
id: linkAddPausePopup
modal: true
focus: true
x: parent.width - linkAdPopupContentText.width
y: parent.height + linkAdPopupContentText.height
contentItem: Text {
id: linkAdPopupContentText
padding: 10
text: "Pause simulation to add a link, light, or joint"
}
onOpened: {
x = parent.width - implicitWidth
y = parent.height + 4
}
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent
}

Expand Down Expand Up @@ -603,13 +605,15 @@ Rectangle {
id: sensorAddPausePopup
modal: true
focus: true
x: parent.width - sensorAddPopupContentText.width
y: parent.height + sensorAddPopupContentText.height
contentItem: Text {
id: sensorAddPopupContentText
padding: 10
text: "Pause simulation to add a sensor"
}
onOpened: {
x = parent.width - implicitWidth
y = parent.height + 4
}
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent
}

Expand Down
Loading