From 8f88fbfc4b498b531e048bafc1ee9052bc637eb4 Mon Sep 17 00:00:00 2001 From: RocketRobz Date: Sun, 7 Oct 2018 12:06:55 -0600 Subject: [PATCH] Clear clipboard after copying or moving --- arm9/source/file_browse.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/arm9/source/file_browse.cpp b/arm9/source/file_browse.cpp index eb88275..df582ac 100644 --- a/arm9/source/file_browse.cpp +++ b/arm9/source/file_browse.cpp @@ -317,6 +317,7 @@ bool fileBrowse_paste(void) { printf("Moving..."); rename(clipboard, destPath); } + clipboardOn = false; // Clear clipboard after copying or moving return true; } if (pressed & KEY_B) {