fixed reloading of ShareManager due to postModDirectories and made it reload after addign new share

This commit is contained in:
mr-alice 2016-09-18 21:41:18 +02:00
parent e4568a896f
commit ff4c43819e
4 changed files with 13 additions and 7 deletions

View file

@ -756,7 +756,10 @@ void MainWindow::updateFriends()
void MainWindow::postModDirectories(bool update_local)
{
RSettingsWin::postModDirectories(update_local);
ShareManager::postModDirectories(update_local);
// Why would we need that?? The effect is to reset the flags while we're changing them, so it's really not
// a good idea.
//ShareManager::postModDirectories(update_local);
QCoreApplication::flush();
}