Text marker should go out when changing pages

svn path=/trunk/kdegraphics/kpdf/; revision=342102
remotes/origin/kpdf-experiments
Albert Astals Cid 22 years ago
parent 819bd7adbe
commit 929dfa12a7
  1. 4
      kpdf/kpdf_pagewidget.cc

@ -179,8 +179,10 @@ namespace KPDF
void PageWidget::setPage(int page)
{
// any idea why this mutex is necessary?
static QMutex mutex;
m_selection = false;
Q_ASSERT(mutex.locked() == false);
mutex.lock();
if (m_doc)

Loading…
Cancel
Save