Skip to content

Commit

Permalink
Merge pull request #794 from ElderOrb/show_device_id
Browse files Browse the repository at this point in the history
show device id
  • Loading branch information
dericed authored Dec 8, 2023
2 parents a291722 + e74df04 commit 0837a05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/GUI/dvrescue/dvrescue/CapturePage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ Rectangle {

deviceNameTextField.text: {
console.debug('resolving device info for device: ', index)
return devicesModel.count === 0 ? '' : devicesModel.get(index).name + " (" + devicesModel.get(index).type + ")"
return devicesModel.count === 0 ? '' : devicesModel.get(index).name + " (" + devicesModel.get(index).type + ")" + ' - ' + devicesModel.get(index).id
}
}
}
Expand Down

0 comments on commit 0837a05

Please sign in to comment.