diff options
Diffstat (limited to 'src/gui/widgets/guitable.cpp')
-rw-r--r-- | src/gui/widgets/guitable.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/guitable.cpp b/src/gui/widgets/guitable.cpp index e6d3119fb..9aa17c512 100644 --- a/src/gui/widgets/guitable.cpp +++ b/src/gui/widgets/guitable.cpp @@ -415,7 +415,7 @@ void GuiTable::mousePressed(MouseEvent& event) if (!mModel || !mSelectable) return; - if (event.getButton() == MouseEvent::LEFT) + if (event.getButton() == MouseButton::LEFT) { const int row = getRowForY(event.getY()); const int column = getColumnForX(event.getX()); @@ -454,7 +454,7 @@ void GuiTable::mouseWheelMovedDown(MouseEvent& event) void GuiTable::mouseDragged(MouseEvent& event) { - if (event.getButton() != MouseEvent::LEFT) + if (event.getButton() != MouseButton::LEFT) return; // Make table selection update on drag |