From 756f949861291cb06c89cb1885b8d485860a90cb Mon Sep 17 00:00:00 2001 From: "Piotr Paczkowski (trzeci.eu)" Date: Mon, 20 May 2019 01:48:10 +0200 Subject: [PATCH] Remove possibly problematic TODO comment Running qt installer instance Docker always falls into a case of not being able to define volume size. Hence just in case, let's remove a TODO comment that hints to block `Next` button. --- src/libs/installer/packagemanagergui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/installer/packagemanagergui.cpp b/src/libs/installer/packagemanagergui.cpp index a053e9bff..815cb8f71 100644 --- a/src/libs/installer/packagemanagergui.cpp +++ b/src/libs/installer/packagemanagergui.cpp @@ -2526,7 +2526,7 @@ void ReadyForInstallationPage::entering() qDebug().nospace() << "Cannot determine available space on device. " "Volume descriptor: " << targetVolume.volumeDescriptor() << ", Mount path: " << targetVolume.mountPath() << ". Continue silently."; - return; // TODO: Shouldn't this also disable the "Next" button? + return; } const bool tempOnSameVolume = (targetVolume == tempVolume);