author | zecke <zecke> | 2003-11-30 13:23:51 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-11-30 13:23:51 (UTC) |
commit | 16756af1bf59a8c59b16c852e311316aacd3351f (patch) (unidiff) | |
tree | fb173ed7bdca4a1691ce5ed31bebf436624f74b1 | |
parent | 8339a705567a3bd50af2e41805e9256973eedcc4 (diff) | |
download | opie-16756af1bf59a8c59b16c852e311316aacd3351f.zip opie-16756af1bf59a8c59b16c852e311316aacd3351f.tar.gz opie-16756af1bf59a8c59b16c852e311316aacd3351f.tar.bz2 |
Allow to process mouse and key events during document scanning...
I use 20 as a value for now... someone tuned it but forgot to commit it?!
-rw-r--r-- | core/launcher/documentlist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/launcher/documentlist.cpp b/core/launcher/documentlist.cpp index 1a7de33..ece6931 100644 --- a/core/launcher/documentlist.cpp +++ b/core/launcher/documentlist.cpp | |||
@@ -142,9 +142,9 @@ void DocumentList::pause() | |||
142 | 142 | ||
143 | void DocumentList::resume() | 143 | void DocumentList::resume() |
144 | { | 144 | { |
145 | if ( d->tid == 0 ) { | 145 | if ( d->tid == 0 ) { |
146 | d->tid = startTimer( 0 ); | 146 | d->tid = startTimer( 20 ); |
147 | //qDebug("resumed %i", d->tid); | 147 | //qDebug("resumed %i", d->tid); |
148 | } | 148 | } |
149 | } | 149 | } |
150 | 150 | ||