Reduce watchers on mac (hitting 256 file descriptor limit).

This commit is contained in:
John Maguire 2010-03-22 23:01:03 +00:00
parent 011b26670a
commit 3bc93339d9
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ class LibraryWatcher : public QObject {
int total_watches_;
#ifdef Q_OS_DARWIN
static const int kMaxWatches = 200;
static const int kMaxWatches = 100;
#endif
};