From c4178ef8a3c03443bc4a27b046a686c3b144768c Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Wed, 13 Sep 2017 03:49:50 -0400 Subject: [PATCH] Change default file extension to .vcv --- src/app/Toolbar.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/app/Toolbar.cpp b/src/app/Toolbar.cpp index 8fd3493b..738efeb9 100644 --- a/src/app/Toolbar.cpp +++ b/src/app/Toolbar.cpp @@ -6,8 +6,6 @@ namespace rack { -static const char *filters = "JSON Patch\0*.json\0"; - struct NewItem : MenuItem { void onAction() { @@ -17,7 +15,7 @@ struct NewItem : MenuItem { struct SaveItem : MenuItem { void onAction() { - char *path = osdialog_file(OSDIALOG_SAVE, "./patches", "Untitled.json", NULL); + char *path = osdialog_file(OSDIALOG_SAVE, "./patches", "Untitled.vcv", NULL); if (path) { gRackWidget->savePatch(path); free(path);