Skip to content

Commit

Permalink
Merge pull request hd-zero#455 from Master92/hot_stars
Browse files Browse the repository at this point in the history
Fix star status is lost when marking clip as hot
  • Loading branch information
ligenxxxx authored Nov 13, 2024
2 parents 1f9465e + 8cf8e58 commit 9425c01
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ui/page_playback.c
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,8 @@ static void mark_video_file(int const seq) {
system_exec(cmd);
sprintf(cmd, "mv %s%s." REC_packJPG " %s%s." REC_packJPG, MEDIA_FILES_DIR, pnode->label, MEDIA_FILES_DIR, newLabel);
system_exec(cmd);
sprintf(cmd, "mv %s%s" REC_starSUFFIX " %s%s.%s" REC_starSUFFIX, MEDIA_FILES_DIR, pnode->filename, MEDIA_FILES_DIR, newLabel, pnode->ext);
system_exec(cmd);

walk_sdcard();
media_db.cur_sel = constrain(seq, 0, (media_db.count - 1));
Expand Down

0 comments on commit 9425c01

Please sign in to comment.