From c6247fe414d570df926c8acf46586f8c69ce04e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filiph=20Sandstr=C3=B6m?= Date: Wed, 27 Oct 2021 18:49:04 +0200 Subject: Everywhere: Rename back-click to backward-click This matches the current forward-click terminology. --- Userland/Demos/Mouse/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Demos/Mouse') 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) { -- cgit v1.2.3