diff options
author | David Thompson <dthompson2@worcester.edu> | 2016-08-11 22:48:32 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2016-08-11 22:48:32 -0400 |
commit | d4b3f37d73194fca4533af9cc2452bcace52ac68 (patch) | |
tree | 12e3021aa486bbd772c735c3988e77d4cada0bc0 | |
parent | 4c0e431b1d09b0b961a764334bf58cada254922a (diff) |
window: Change default title to "Untitled".
* sly/window.scm (make-window): Change default title to "Untitled".
-rw-r--r-- | sly/window.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sly/window.scm b/sly/window.scm index 25b90fc..7b17276 100644 --- a/sly/window.scm +++ b/sly/window.scm @@ -55,7 +55,7 @@ (fullscreen? window-fullscreen?)) (define* (make-window #:optional #:key - (title "Sly Window") + (title "Untitled") (resolution (vector2 640 480)) (fullscreen? #f)) (%make-window title resolution fullscreen?)) |