Commit 31de38601bb83e8c9297df2729f0684194a6e92d

  • avatar
  • mae <qt-info @no…a.com>
  • Wed Sep 08 13:43:15 CEST 2010
Leave block selection mode

The patch makes the editor leave block selection
mode when users continue to select text with
the keyboard. The editor will smoothly convert
to standard selection mode.
  
13141314 handleBlockSelection(diff_row, diff_col);
13151315 e->accept();
13161316 return;
1317 } else {
1318 // leave block selection mode
1319 if (d->m_inBlockSelectionMode) {
1320 d->m_inBlockSelectionMode = false;
1321 d->m_blockSelection.clear();
1322 viewport()->update();
1323 }
13171324 }
13181325#endif
13191326 break;