diff options
author | Filiph Sandström <filiph.sandstrom@filfatstudios.com> | 2021-10-27 13:20:27 +0200 |
---|---|---|
committer | Idan Horowitz <idan.horowitz@gmail.com> | 2021-10-27 22:05:58 +0300 |
commit | d6a072630268eeccee8ce1da0c13fd4a169caa8c (patch) | |
tree | 169e8d0ec79b6c6918a0425986d9c09d9a0b30c7 /Userland/Utilities | |
parent | a6ccf6659a706eb985cf5e62cd8e8db05ab18ab9 (diff) | |
download | serenity-d6a072630268eeccee8ce1da0c13fd4a169caa8c.zip |
Everywhere: Rename left/right-click to primary/secondary
This resolves #10641.
Diffstat (limited to 'Userland/Utilities')
-rw-r--r-- | Userland/Utilities/shot.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Utilities/shot.cpp b/Userland/Utilities/shot.cpp index 2f6087d144..13a8b193bd 100644 --- a/Userland/Utilities/shot.cpp +++ b/Userland/Utilities/shot.cpp @@ -41,7 +41,7 @@ public: private: virtual void mousedown_event(GUI::MouseEvent& event) override { - if (event.button() == GUI::MouseButton::Left) + if (event.button() == GUI::MouseButton::Primary) m_anchor_point = event.position(); }; @@ -55,7 +55,7 @@ private: virtual void mouseup_event(GUI::MouseEvent& event) override { - if (event.button() == GUI::MouseButton::Left) + if (event.button() == GUI::MouseButton::Primary) m_window->close(); }; |