diff --git a/CHANGELOG.md b/CHANGELOG.md index 143bf2b05..88cfbb45a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -103,7 +103,9 @@ - UL: Sync signal delete scene with OFW (by @xMasterX) - UL: Fix incorrect rx key state when opening Read menu (by @xMasterX) - OFW: Fixed transition to Saved menu after Delete RAW (by @Skorpionm) -- Archive: Fix favorite's parent folders thinking they are favorited too (by @Willy-JL) +- Archive: + - Fix favorite's parent folders thinking they are favorited too (by @Willy-JL) + - Fix rename extension show/hide behavior (by @Willy-JL) - Infrared: Correct Samsung.ir CH+ command (by @skyhawkillusions) - FBT: Consistent version/branch info, fix gitorigin (by @Willy-JL) - AssetPacker: Pack pre-compiled icons and fonts too (by @Willy-JL) diff --git a/applications/main/archive/scenes/archive_scene_rename.c b/applications/main/archive/scenes/archive_scene_rename.c index 7255f14ae..053bc74f5 100644 --- a/applications/main/archive/scenes/archive_scene_rename.c +++ b/applications/main/archive/scenes/archive_scene_rename.c @@ -28,7 +28,7 @@ void archive_scene_rename_on_enter(void* context) { ArchiveTabEnum tab = archive_get_tab(archive->browser); bool hide_ext = tab != ArchiveTabBrowser && tab != ArchiveTabInternal; - if(is_file && !hide_ext) { + if(is_file && hide_ext) { path_extract_ext_str(current->path, archive->file_extension); path_extract_filename(current->path, path_name, true); } else {