We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec90ae6 commit 4692106Copy full SHA for 4692106
src/harmony/app/canvas.cpy
@@ -117,7 +117,7 @@ namespace app_ui:
117
118
void sanitize_filename(string &name):
119
for i := 0; i < name.length(); i++:
120
- if name[i] == '/':
+ if name[i] == '/' or name[i] == ':':
121
name[i] = '_'
122
123
auto get_stroke_width():
@@ -363,7 +363,7 @@ namespace app_ui:
363
self.mark_redraw()
364
365
366
- // we tack on ".hrm" to the filename
+ // we tack on ".[timestamp].hrm" to the filename
367
void save_project(bool overwrite=false):
368
sanitize_filename(self.project_name)
369
debug "SAVING PROJECT", self.project_name
0 commit comments