# HG changeset patch # User Chris Cannam # Date 1294777117 0 # Node ID 0fe81e1b26ceb103f02198fa819ed7d7bdf6cdb4 # Parent 96266953fbd7319c4f6665549eb9379d3ef5ac48 * Be a bit less eager to suspend the fs watcher (e.g. don't suspend on potentially lengthy operations like diff) diff -r 96266953fbd7 -r 0fe81e1b26ce mainwindow.cpp --- a/mainwindow.cpp Mon Jan 10 15:39:27 2011 +0000 +++ b/mainwindow.cpp Tue Jan 11 20:18:37 2011 +0000 @@ -1606,7 +1606,9 @@ // fs watcher while running commands, and restore it shortly after // a command has finished. - suspendFileSystemWatcher(); + if (action.action == ACT_STAT) { + suspendFileSystemWatcher(); + } } void MainWindow::commandFailed(HgAction action, QString output)