You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
497 B
15 lines
497 B
Index: kio/kio/kdirwatch.cpp
|
|
===================================================================
|
|
--- kio/kio/kdirwatch.cpp.orig
|
|
+++ kio/kio/kdirwatch.cpp
|
|
@@ -743,7 +743,8 @@ bool KDirWatchPrivate::useINotify( Entry
|
|
|
|
bool KDirWatchPrivate::useStat(Entry* e)
|
|
{
|
|
- if (KIO::probably_slow_mounted(e->path))
|
|
+ if ( e->path.startsWith("/media/") || (e->path == "/media")
|
|
+ || (KIO::probably_slow_mounted(e->path)) )
|
|
useFreq(e, m_nfsPollInterval);
|
|
else
|
|
useFreq(e, m_PollInterval);
|