Try to update window title

This commit is contained in:
Skyler Lehmkuhl 2024-12-22 05:33:06 -05:00
parent 21d42f2ce2
commit 0dc791bbba
2 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,7 @@
"permissions": [ "permissions": [
"core:default", "core:default",
"core:window:allow-close", "core:window:allow-close",
"core:window:allow-set-title",
"shell:allow-open", "shell:allow-open",
"fs:default", "fs:default",
{ {

View File

@ -2553,6 +2553,8 @@ async function _open(path) {
} }
lastSaveIndex = undoStack.length; lastSaveIndex = undoStack.length;
filePath = path filePath = path
// Tauri thinks it is setting the title here, but it isn't getting updated
await getCurrentWindow().setTitle(await basename(filePath))
addRecentFile(path) addRecentFile(path)
updateUI() updateUI()
} else { } else {