Skip to content
Snippets Groups Projects
Commit 53755324 authored by llea's avatar llea
Browse files

Add device-name for audiodriver

parent 3cb7a6ff
No related branches found
No related tags found
No related merge requests found
......@@ -79,14 +79,14 @@ void ConfigurationPanel::init()
QString name = hostNameApi + " (device #" + QString::number(i) + ")";
// New radio button with found device name
QRadioButton* device = new QRadioButton(DriverChoice, name);
QRadioButton* device = new QRadioButton(DriverChoice);
device->setGeometry( QRect( 10, 30 + top, 390, 21 ) );
// Set label of radio button
device->setText(name);
device->setText(devicename);
// Add tooltip for each one
QToolTip::add(device , devicename );
QToolTip::add(device , name );
top += 30;
if (Manager::instance().defaultDevice(i)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment