Skip to content

Commit

Permalink
Reorder window title contents.
Browse files Browse the repository at this point in the history
  • Loading branch information
ReFreezed committed Aug 12, 2020
1 parent 7176a58 commit 83bb03c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.gloa
Original file line number Diff line number Diff line change
Expand Up @@ -2856,7 +2856,7 @@ export getOptimalBufferSize :: (system:System, moreExact=false) -> int {

export updateWindowTitle :: () {
local project = app.projects[app.currentProjectIndex]
LW.setTitle(format("%s%s - %s", (project.path ?: project.displayedName), (project.edited ? "" : ""), WINDOW_TITLE))
LW.setTitle(format("%s - %s%s", WINDOW_TITLE, (project.path ?: project.displayedName), (project.edited ? "" : "")))
}


Expand Down

0 comments on commit 83bb03c

Please sign in to comment.