summaryrefslogtreecommitdiff
path: root/Userland/Services
diff options
context:
space:
mode:
authorthankyouverycool <66646555+thankyouverycool@users.noreply.github.com>2022-09-07 14:35:30 -0400
committerLinus Groh <mail@linusgroh.de>2022-09-08 10:17:27 +0100
commitab29f8976da38b8bc50a1eeaae6c63dd3c0153d1 (patch)
treef118d61104a647a3caa43d5fc9ef4e768ce4e1dc /Userland/Services
parent12ee92004dc522282a2005b0ad52eb8b47a41d54 (diff)
downloadserenity-ab29f8976da38b8bc50a1eeaae6c63dd3c0153d1.zip
Taskbar: Set TaskbarButton checkable
Diffstat (limited to 'Userland/Services')
-rw-r--r--Userland/Services/Taskbar/TaskbarButton.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Services/Taskbar/TaskbarButton.cpp b/Userland/Services/Taskbar/TaskbarButton.cpp
index 1eade91323..7693da51d8 100644
--- a/Userland/Services/Taskbar/TaskbarButton.cpp
+++ b/Userland/Services/Taskbar/TaskbarButton.cpp
@@ -17,6 +17,7 @@
TaskbarButton::TaskbarButton(WindowIdentifier const& identifier)
: m_identifier(identifier)
{
+ set_checkable(true);
}
void TaskbarButton::context_menu_event(GUI::ContextMenuEvent&)