minor style change

This commit is contained in:
AlexandreRouma 2021-08-30 01:23:42 +02:00 committed by GitHub
parent 99441ea2eb
commit ba6d9f7202
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -356,13 +356,12 @@ private:
float menuWidth = ImGui::GetContentRegionAvailWidth();
// If no device is selected, draw just the refresh button
// If no device is selected, draw only the refresh button
if (_this->devId < 0) {
if (ImGui::Button(CONCAT("Refresh##_dev_select_", _this->name), ImVec2(menuWidth, 0))) {
_this->refresh();
_this->selectDevice(config.conf["device"]);
}
return;
}