Set default percentage to 100% so that the progress bar goes away if device detection is skipped
This commit is contained in:
parent
f8af9980fd
commit
9c4e73bbed
2 changed files with 7 additions and 1 deletions
|
|
@ -14,6 +14,12 @@ ResourceManager *ResourceManager::get()
|
|||
return instance.get();
|
||||
}
|
||||
|
||||
ResourceManager::ResourceManager()
|
||||
{
|
||||
detection_percent = 100;
|
||||
detection_string = "";
|
||||
}
|
||||
|
||||
ResourceManager::~ResourceManager()
|
||||
{
|
||||
for(i2c_smbus_interface* bus : busses)
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ class ResourceManager
|
|||
public:
|
||||
static ResourceManager *get();
|
||||
|
||||
ResourceManager() = default;
|
||||
ResourceManager();
|
||||
~ResourceManager();
|
||||
|
||||
void RegisterI2CBus(i2c_smbus_interface *);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue