summaryrefslogtreecommitdiffstats
path: root/src/gui/RenameWindow.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-08-09 04:23:18 +0000
committerDavid Robillard <d@drobilla.net>2014-08-09 04:23:18 +0000
commit42347b5c859a77eb99af1c718b48170b0672dc5e (patch)
treec77c9567d64623a2df9f674a3c8791ded2dbb033 /src/gui/RenameWindow.cpp
parented2d6f395dd6363f1955512b3f20cf3f39954783 (diff)
downloadingen-42347b5c859a77eb99af1c718b48170b0672dc5e.tar.gz
ingen-42347b5c859a77eb99af1c718b48170b0672dc5e.tar.bz2
ingen-42347b5c859a77eb99af1c718b48170b0672dc5e.zip
Fix GUI updates after operations by emulating set feedback.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5445 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/RenameWindow.cpp')
-rw-r--r--src/gui/RenameWindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/RenameWindow.cpp b/src/gui/RenameWindow.cpp
index e4d6fe05..880277ed 100644
--- a/src/gui/RenameWindow.cpp
+++ b/src/gui/RenameWindow.cpp
@@ -125,9 +125,9 @@ RenameWindow::ok_clicked()
}
if (!label.empty() && (!name_atom.is_valid() || label != name_atom.ptr<char>())) {
- _app->interface()->set_property(Node::path_to_uri(path),
- uris.lv2_name,
- _app->forge().alloc(label));
+ _app->set_property(Node::path_to_uri(path),
+ uris.lv2_name,
+ _app->forge().alloc(label));
}
hide();