diff options
author | Filiph Sandström <filiph.sandstrom@filfatstudios.com> | 2021-10-27 18:49:04 +0200 |
---|---|---|
committer | Idan Horowitz <idan.horowitz@gmail.com> | 2021-10-27 22:05:58 +0300 |
commit | c6247fe414d570df926c8acf46586f8c69ce04e7 (patch) | |
tree | 0c583edd8497cfbe6d1205ddfbd27d99c75db540 /Userland/Demos/Mouse | |
parent | d6a072630268eeccee8ce1da0c13fd4a169caa8c (diff) | |
download | serenity-c6247fe414d570df926c8acf46586f8c69ce04e7.zip |
Everywhere: Rename back-click to backward-click
This matches the current forward-click terminology.
Diffstat (limited to 'Userland/Demos/Mouse')
-rw-r--r-- | Userland/Demos/Mouse/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Demos/Mouse/main.cpp b/Userland/Demos/Mouse/main.cpp index 3cf21c8004..b15c93655a 100644 --- a/Userland/Demos/Mouse/main.cpp +++ b/Userland/Demos/Mouse/main.cpp @@ -92,7 +92,7 @@ public: if (m_buttons & GUI::MouseButton::Forward) painter.fill_rect({ 26, 44, 4, 16 }, Color::Blue); - if (m_buttons & GUI::MouseButton::Back) + if (m_buttons & GUI::MouseButton::Backward) painter.fill_rect({ 26, 71, 4, 16 }, Color::Blue); if (m_show_scroll_wheel) { |