diff options
| author | Robert Jonsson <spamatica@gmail.com> | 2011-01-17 16:20:51 +0000 |
|---|---|---|
| committer | Robert Jonsson <spamatica@gmail.com> | 2011-01-17 16:20:51 +0000 |
| commit | 5b205da5d042feb64161e24b61c50271c31d2292 (patch) | |
| tree | 7450c5e72f331747cbfcab7fce2681f91ca1dd91 /muse2/muse/widgets | |
| parent | dfc1ba699f837700a005a218da56e17016965f4d (diff) | |
fixed panic button and init crash
Diffstat (limited to 'muse2/muse/widgets')
| -rw-r--r-- | muse2/muse/widgets/projectcreateimpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/muse2/muse/widgets/projectcreateimpl.cpp b/muse2/muse/widgets/projectcreateimpl.cpp index c7aa0fdb..d455c917 100644 --- a/muse2/muse/widgets/projectcreateimpl.cpp +++ b/muse2/muse/widgets/projectcreateimpl.cpp @@ -49,7 +49,7 @@ void ProjectCreateImpl::updateDirectoryPath() } else { if (!projectNameEdit->text().isEmpty()) name = projectNameEdit->text() + ".med"; - storageDirEdit->setText(directoryPath + projectNameEdit->text() + name); + storageDirEdit->setText(directoryPath +"/" + name); } } |
