summaryrefslogtreecommitdiff
path: root/Services/Taskbar/TaskbarWindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Services/Taskbar/TaskbarWindow.cpp')
-rw-r--r--Services/Taskbar/TaskbarWindow.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/Services/Taskbar/TaskbarWindow.cpp b/Services/Taskbar/TaskbarWindow.cpp
index b225b7ffa1..c6121f04e1 100644
--- a/Services/Taskbar/TaskbarWindow.cpp
+++ b/Services/Taskbar/TaskbarWindow.cpp
@@ -224,11 +224,10 @@ void TaskbarWindow::wm_event(GUI::WMEvent& event)
window.set_progress(changed_event.progress());
if (window.is_minimized()) {
window.button()->set_foreground_color(Color::DarkGray);
- window.button()->set_text(String::format("[%s]", changed_event.title().characters()));
} else {
window.button()->set_foreground_color(Color::Black);
- window.button()->set_text(changed_event.title());
}
+ window.button()->set_text(changed_event.title());
window.button()->set_checked(changed_event.is_active());
break;
}