mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 19:25:39 +00:00
* src/frontends/qt4/GuiWorkArea.C:
- whitespace. I forgot to save the changes before committing :-( git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17595 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
8cc13ab7c9
commit
81f45add92
@ -318,7 +318,7 @@ void GuiWorkArea::mouseReleaseEvent(QMouseEvent * e)
|
||||
|
||||
void GuiWorkArea::mouseMoveEvent(QMouseEvent * e)
|
||||
{
|
||||
//we kill the triple click if we move
|
||||
// we kill the triple click if we move
|
||||
doubleClickTimeout();
|
||||
FuncRequest cmd(LFUN_MOUSE_MOTION, e->x(), e->y(),
|
||||
q_motion_state(e->buttons()));
|
||||
@ -430,10 +430,11 @@ void GuiWorkArea::doubleClickTimeout() {
|
||||
void GuiWorkArea::mouseDoubleClickEvent(QMouseEvent * e)
|
||||
{
|
||||
dc_event_ = double_click(e);
|
||||
QTimer::singleShot(QApplication::doubleClickInterval(), this, SLOT(doubleClickTimeout()));
|
||||
QTimer::singleShot(QApplication::doubleClickInterval(), this,
|
||||
SLOT(doubleClickTimeout()));
|
||||
FuncRequest cmd(LFUN_MOUSE_DOUBLE,
|
||||
e->x(), e->y(),
|
||||
q_button_state(e->button()));
|
||||
e->x(), e->y(),
|
||||
q_button_state(e->button()));
|
||||
dispatch(cmd);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user