From 42021fb7b49ec4c7e2bf809e15bb77a6456cb972 Mon Sep 17 00:00:00 2001 From: kervala Date: Wed, 21 Sep 2016 17:19:00 +0200 Subject: [PATCH] Fixed: Interface stalled when adding new profile, see #279 --HG-- branch : develop --- .../tools/client/ryzom_installer/src/operationdialog.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp b/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp index 07b85ff20..583b3ec03 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp @@ -1088,6 +1088,11 @@ void COperationDialog::addComponentsProfiles() profile.createShortcuts(); profile.createClientConfig(); } + + // clear list of all servers to uninstall + m_addComponents.profiles.clear(); + + emit done(); } void COperationDialog::deleteComponentsProfiles()