From b9fa0398c0d286d98869b0f07a6078ed8148c2cd Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 11 Feb 2019 17:58:43 -0500 Subject: [PATCH] [partition] Disable one call to updateButtons() - suggested by @abucodonosor, removing this one call seems to solve the data race for the device model. --- src/modules/partition/gui/PartitionPage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/partition/gui/PartitionPage.cpp b/src/modules/partition/gui/PartitionPage.cpp index 2743ec53a..a2f2eab60 100644 --- a/src/modules/partition/gui/PartitionPage.cpp +++ b/src/modules/partition/gui/PartitionPage.cpp @@ -581,7 +581,7 @@ void PartitionPage::onPartitionModelReset() { m_ui->partitionTreeView->expandAll(); - updateButtons(); + // updateButtons(); updateBootLoaderIndex(); }