| 1538 | } |
| 1539 | |
| 1540 | void Ui::OpenRGBDevicePage::ShowDeviceView() |
| 1541 | { |
| 1542 | /*-----------------------------------------------------*\ |
| 1543 | | Read selected mode | |
| 1544 | \*-----------------------------------------------------*/ |
| 1545 | unsigned int selected_mode = (unsigned int)ui->ModeBox->currentIndex(); |
| 1546 | |
| 1547 | DeviceViewShowing = true; |
| 1548 | |
| 1549 | if(device->modes[selected_mode].flags & MODE_FLAG_HAS_PER_LED_COLOR && device->leds.size() >= 1) |
| 1550 | { |
| 1551 | ui->DeviceViewBoxFrame->show(); |
| 1552 | } |
| 1553 | } |
| 1554 | |
| 1555 | void Ui::OpenRGBDevicePage::HideDeviceView() |
| 1556 | { |
no test coverage detected