summaryrefslogtreecommitdiffhomepage
path: root/tracker-steamvr/steamvr.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-05-17 12:54:10 +0200
committerStanislaw Halik <sthalik@misaki.pl>2017-05-18 05:10:11 +0200
commit4f29f56b4e0bf5f76e689868ca091a2af94590fe (patch)
treeb3c15ceabf1e991b8bcbd4b9541dd0f851152580 /tracker-steamvr/steamvr.cpp
parent3953977d0a9048883adc5db80bd714bd9bc72ed8 (diff)
tracker/steamvr: add "[disconnected]" in device list
Diffstat (limited to 'tracker-steamvr/steamvr.cpp')
-rw-r--r--tracker-steamvr/steamvr.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/tracker-steamvr/steamvr.cpp b/tracker-steamvr/steamvr.cpp
index 43bccdb8..8585574a 100644
--- a/tracker-steamvr/steamvr.cpp
+++ b/tracker-steamvr/steamvr.cpp
@@ -106,6 +106,7 @@ void device_list::fill_device_specs(QList<device_spec>& list)
dev.model = str;
dev.pose = device_states[k];
dev.k = k;
+ dev.is_connected = device_states[k].bDeviceIsConnected;
list.push_back(dev);
}
@@ -303,7 +304,12 @@ steamvr_dialog::steamvr_dialog()
device_list list;
for (const device_spec& spec : list.devices())
- ui.device->addItem(spec.to_string(), spec.to_string());
+ {
+ QString text = spec.to_string();
+ if (!spec.is_connected)
+ text = QStringLiteral("%1 [disconnected]").arg(text);
+ ui.device->addItem(text, spec.to_string());
+ }
tie_setting(s.device_serial, ui.device);
}