From 43dc73756cf97b4e4bc2ebdec59f3cb15f99750b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 9 Jun 2008 21:48:32 +0000 Subject: Fix prompting for filename when patch is loaded from command line. git-svn-id: http://svn.drobilla.net/lad/ingen@1264 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/gui/LoadPatchWindow.cpp | 5 +---- src/libs/gui/PatchWindow.cpp | 2 -- 2 files changed, 1 insertion(+), 6 deletions(-) (limited to 'src/libs/gui') diff --git a/src/libs/gui/LoadPatchWindow.cpp b/src/libs/gui/LoadPatchWindow.cpp index 57ae1536..398eaf1f 100644 --- a/src/libs/gui/LoadPatchWindow.cpp +++ b/src/libs/gui/LoadPatchWindow.cpp @@ -127,11 +127,8 @@ LoadPatchWindow::ok_clicked() if (_poly_from_user_radio->get_active()) _initial_data.insert(make_pair("ingen:polyphony", _poly_spinbutton->get_value_as_int())); - if (_replace) { + if (_replace) App::instance().engine()->clear_patch(_patch->path()); - App::instance().engine()->set_variable(_patch->path(), "ingen:document", - Atom(get_uri().c_str())); - } if (_patch->path() != "/") parent = _patch->path().parent(); diff --git a/src/libs/gui/PatchWindow.cpp b/src/libs/gui/PatchWindow.cpp index 865cc9eb..9367f2d7 100644 --- a/src/libs/gui/PatchWindow.cpp +++ b/src/libs/gui/PatchWindow.cpp @@ -366,8 +366,6 @@ PatchWindow::event_save_as() if (confirm) { App::instance().loader()->save_patch(_patch, filename); - App::instance().engine()->set_variable(_patch->path(), "ingen:document", - Atom(Glib::filename_to_uri(filename).c_str())); } } App::instance().configuration()->set_patch_folder(dialog.get_current_folder()); -- cgit v1.2.1