diff --git a/apps/file_manager/ui.cpp b/apps/file_manager/ui.cpp
index 1ac18a0..8110fee 100644
--- a/apps/file_manager/ui.cpp
+++ b/apps/file_manager/ui.cpp
@@ -31,14 +31,21 @@ bool InstanceLoadFolder(Instance *instance, String path /* takes ownership */, i
 
 	instance->issuedPasteTask = nullptr;
 
-	InstanceRemoveContents(instance);
-	FolderAttachInstance(instance, path, false);
-	StringDestroy(&path);
-
 	Task task = {};
 	task.context = historyMode;
 	task.cDescription = interfaceString_FileManagerOpenFolderTask;
 
+	EsListViewIndex focusedIndex;
+
+	if (EsListViewGetFocusedItem(instance->list, nullptr, &focusedIndex)) {
+		String name = instance->listContents[focusedIndex].entry->GetName();
+		task.string = StringDuplicate(name);
+	}
+
+	InstanceRemoveContents(instance);
+	FolderAttachInstance(instance, path, false);
+	StringDestroy(&path);
+
 	task.callback = [] (Instance *instance, Task *) {
 		Folder *folder = instance->folder;
 		EsMutexAcquire(&folder->modifyEntriesMutex);
@@ -70,13 +77,7 @@ bool InstanceLoadFolder(Instance *instance, String path /* takes ownership */, i
 
 		HistoryEntry historyEntry = {};
 		historyEntry.path = instance->path;
-
-		EsListViewIndex focusedIndex;
-
-		if (EsListViewGetFocusedItem(instance->list, nullptr, &focusedIndex)) {
-			String name = instance->listContents[focusedIndex].entry->GetName();
-			historyEntry.focusedItem = StringDuplicate(name);
-		}
+		historyEntry.focusedItem = task->string;
 
 		if (historyMode == LOAD_FOLDER_BACK) {
 			instance->pathForwardHistory.Add(historyEntry);
diff --git a/desktop/api.cpp b/desktop/api.cpp
index 2ebf0e1..bd649bd 100644
--- a/desktop/api.cpp
+++ b/desktop/api.cpp
@@ -1573,10 +1573,10 @@ void EsCommandAddButton(EsCommand *command, EsButton *button) {
 	Array<EsElement *> elements = { command->elements };
 	elements.Add(button);
 	command->elements = elements.array;
-	EsButtonOnCommand(button, command->callback, command);
 	button->state |= UI_STATE_COMMAND_BUTTON;
 	EsElementSetEnabled(button, command->enabled);
-	EsButtonSetCheck(button, command->check);
+	EsButtonSetCheck(button, command->check); // Set the check before setting the callback, so that it doesn't get called.
+	EsButtonOnCommand(button, command->callback, command);
 }
 
 EsCommand *EsCommandRegister(EsCommand *command, EsInstance *_instance, 
diff --git a/res/Theme Source.dat b/res/Theme Source.dat
index 7207cee..6d079fd 100644
Binary files a/res/Theme Source.dat and b/res/Theme Source.dat differ
diff --git a/res/Theme.dat b/res/Theme.dat
index 64101a4..76cbf99 100644
Binary files a/res/Theme.dat and b/res/Theme.dat differ