Skip to content

Commit

Permalink
Fix icon change handling (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems authored Jan 26, 2023
1 parent aaa46ca commit a42a6b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion applications/launcher/appitem.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ private slots:
}
void onIconChanged(QString path){
_imgFile = path;
emit onIconChanged(path);
emit imgFileChanged(path);
}

private:
Expand Down
2 changes: 1 addition & 1 deletion applications/task-switcher/appitem.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ private slots:
}
void onIconChanged(QString path){
_imgFile = path;
emit onIconChanged(path);
emit imgFileChanged(path);
}

private:
Expand Down

0 comments on commit a42a6b9

Please sign in to comment.