From 375b08857c84dc260dbcc0770c69a85f5de484a5 Mon Sep 17 00:00:00 2001 From: Michael Keller Date: Thu, 18 Apr 2024 12:43:41 +1200 Subject: [PATCH] Desktop: Remove Unneeded Special Case for MacOS. Since the removal of this special case for MacOS was confirmed to be working in the case of building with bluetooth support in #4120, we should probably remove it from the code used when building without bluetooth support as well. Signed-off-by: Michael Keller --- desktop-widgets/downloadfromdivecomputer.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/desktop-widgets/downloadfromdivecomputer.cpp b/desktop-widgets/downloadfromdivecomputer.cpp index 7f7c7774d..3935a1a1c 100644 --- a/desktop-widgets/downloadfromdivecomputer.cpp +++ b/desktop-widgets/downloadfromdivecomputer.cpp @@ -163,13 +163,6 @@ void DownloadFromDCWidget::DC##num##Clicked() \ productModel.setStringList(productList[qPrefDiveComputer::vendor##num()]); \ ui.product->setCurrentIndex(ui.product->findText(qPrefDiveComputer::product##num())); \ ui.device->setCurrentIndex(deviceIndex(qPrefDiveComputer::device##num())); \ - if (QSysInfo::kernelType() == "darwin") { \ - /* it makes no sense that this would be needed on macOS but not Linux */ \ - QCoreApplication::processEvents(); \ - ui.vendor->update(); \ - ui.product->update(); \ - ui.device->update(); \ - } \ } #endif