Merge pull request #2404 from eltociear/master-1

fix: typo in taskbar.cpp
This commit is contained in:
Alexis Rouillard 2023-08-16 08:55:33 +02:00 committed by GitHub
commit 5b33a5917c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -517,7 +517,7 @@ void Task::handle_closed() {
bool Task::handle_clicked(GdkEventButton *bt) {
/* filter out additional events for double/triple clicks */
if (bt->type == GDK_BUTTON_PRESS) {
/* save where the button press ocurred in case it becomes a drag */
/* save where the button press occurred in case it becomes a drag */
drag_start_button = bt->button;
drag_start_x = bt->x;
drag_start_y = bt->y;